package datamodels import "time" type BizObjectOAMParams struct { BizId int64 `json:"bizId" xorm:"'biz_id' bigint pk comment('BIZ 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') "` ParamsId int64 `json:"paramsId" xorm:"'params_id' bigint pk comment('Params ID') "` ParamsOperator string `json:"paramsOperator" xorm:"'params_operator' varchar(15) comment('Params Operator')"` ParamsTarget string `json:"paramsTarget" xorm:"'params_target' varchar(127) comment('Params Target') "` ParamsValue string `json:"paramsValue" xorm:"'params_value' varchar(127) comment('Params Target') "` SortNo int64 `json:"sortNo" xorm:"'sort_no' bigint comment('Sort No') "` 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 *BizObjectOAMParams) TableName() string { return "biz_object_oam_params" }