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') "` LogicalOperator string `json:"logicalOperator" xorm:"'logical_operator' varchar(15) comment('Logical Operator') "` ParamsTarget string `json:"paramsTarget" xorm:"'params_target' varchar(127) comment('Params Target') "` CompareOperator string `json:"compareOperator" xorm:"'compare_operator' varchar(15) comment('Compare Operator') "` ParamsValue string `json:"paramsValue" xorm:"'params_value' varchar(127) comment('Params Value') "` ParamsType int64 `json:"paramsType" xorm:"'params_type' bigint comment('Params Type') "` ParamsRemark string `json:"paramsRemark" xorm:"'params_remark' varchar(255) comment('Params Remark') "` 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" }