package datamodel import "time" type BizObjectOAM struct { BizId int64 `json:"bizId" xorm:"'biz_id' bigint pk comment('主键ID') "` ObjectId int64 `json:"objectId" xorm:"'object_id' bigint pk comment('Object ID') "` OamId int64 `json:"oamId" xorm:"'oam_id' bigint pk comment('OAM ID') "` OamTitle string `json:"oamTitle" xorm:"'oam_title' varchar(127) comment('OAMTitle') "` OamCode string `json:"oamCode" xorm:"'oam_code' varchar(127) comment('OAMCode') "` OamType int64 `json:"oamType" xorm:"'oam_type' bigint comment('Oam Type') "` SqlType int64 `json:"sqlType" xorm:"'sql_type' bigint comment('Sql Type') "` SqlStatement string `json:"sqlStatement" xorm:"'sql_statement' varchar(1023) comment('Statement') "` SqlSelect string `json:"sqlSelect" xorm:"'sql_select' varchar(1023) comment('Sql Select') "` SqlFrom string `json:"sqlFrom" xorm:"'sql_from' varchar(1023) comment('Sql From') "` SqlWhere string `json:"sqlWhere" xorm:"'sql_where' varchar(1023) comment('Sql Where') "` SqlOrder string `json:"sqlOrder" xorm:"'sql_order' varchar(1023) comment('Sql Order') "` SqlCount string `json:"sqlCount" xorm:"'sql_count' varchar(1023) comment('Sql Count') "` OamDesc string `json:"oamDesc" xorm:"'oam_desc' varchar(1023) comment('描述') "` 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 *BizObjectOAM) TableName() string { return "biz_object_oam" }