package datamodels import "time" type ObjectOAM struct { ModelId int64 `json:"modelId" xorm:"'model_id' bigint pk comment('Model 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('Type') "` OamStatement string `json:"oamStatement" xorm:"'oam_statement' varchar(1023) comment('Statement') "` 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 *ObjectOAM) TableName() string { return "ds_object_oam" }