| 1234567891011121314151617181920212223242526272829303132 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package model
- import (
- "lims_adapter/model/internal"
- )
- // Meeting is the golang structure for table meeting.
- type Meeting internal.Meeting
- // Fill with you ideas below.
- type MeetingReq struct {
- Id int `orm:"Id,primary" json:"id"` //
- Code string `orm:"Code" json:"code" v:"required#会议室编码不能为空"` // 会议室编码
- Name string `orm:"Name" json:"name" v:"required#会议室名称不能为空"` // 会议室名称
- Scale int `orm:"Scale" json:"scale"` // 规模/可容纳人数
- Remark string `orm:"Remark" json:"remark"` // 备注/说明
- Location string `orm:"Location" json:"location"` // 位置
- ImgUrl string `orm:"ImgUrl" json:"img_url"` // 图片Url
- Sort int `orm:"Sort" json:"sort"` // 排序
- }
- type ShortMeeting struct {
- Id int `orm:"Id,primary" json:"id"` //
- Code string `orm:"Code" json:"code"` // 会议室编码
- Name string `orm:"Name" json:"name"` // 会议室名称
- ImgUrl string `orm:"ImgUrl" json:"img_url"` // 图片Url
- }
|