oc_admin_info.go 758 B

12345678910
  1. package viewmodels
  2. type OcAdminInfo struct {
  3. OcId int64 `json:"ocId" xorm:"'oc_id' bigint pk comment('Oc ID') "`
  4. AdminId int64 `json:"adminId" xorm:"'admin_id' bigint pk comment('主键ID') "`
  5. AdminName string `json:"adminName" xorm:"'admin_name' varchar(50) comment('Admin Name') "`
  6. AdminPhone string `json:"adminPhone" xorm:"'admin_phone' varchar(50) comment('Admin Phone') "`
  7. CreatedBy int64 `json:"createdBy" xorm:"'created_by' bigint comment('Created By') "`
  8. UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by' bigint comment('Updated By') "`
  9. }