| 12345678910111213141516171819202122 |
- package datamodels
- import "time"
- type MsgCc struct {
- OcId int64 `json:"-" xorm:"'oc_id' bigint pk comment('组织ID:公司或机构或单位ID')"`
- MsgId int64 `json:"msgId" xorm:"'msg_id' bigint pk comment('主键ID') "`
- MsgCcId int64 `json:"msgCcId" xorm:"'msg_cc_id' bigint pk comment('主键ID') "`
- Status int64 `json:"status" xorm:"'status' bigint pk comment('主键ID') "`
-
- CreatedBy int64 `json:"createdBy" xorm:"'created_by'"`
- CreatedAt time.Time `json:"createdAt" xorm:"'created_at'"`
- UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by'"`
- UpdatedAt time.Time `json:"updatedAt" xorm:"'updated_at'"`
- DeletedFlag int64 `json:"deletedFlag" xorm:"'deleted_flag'"`
- DeletedBy int64 `json:"deletedBy" xorm:"'deleted_by'"`
- DeletedAt time.Time `json:"deletedAt" xorm:"'deleted_at'"`
- }
- func (t *MsgCc) TableName() string {
- return "msg_cc"
- }
|