- package viewmodel
- type OcAdminInfo struct {
- OcId int64 `json:"ocId" xorm:"'oc_id' bigint pk comment('Oc ID') "`
- AdminId int64 `json:"adminId" xorm:"'admin_id' bigint pk comment('主键ID') "`
- AdminName string `json:"adminName" xorm:"'admin_name' varchar(50) comment('Admin Name') "`
- AdminPhone string `json:"adminPhone" xorm:"'admin_phone' varchar(50) comment('Admin Phone') "`
- CreatedBy int64 `json:"createdBy" xorm:"'created_by' bigint comment('Created By') "`
- UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by' bigint comment('Updated By') "`
- }
|