| 12345678910111213141516171819202122232425262728293031 |
- 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') "`
- ParamId int64 `json:"paramId" xorm:"'param_id' bigint pk comment('Param ID') "`
- LogicalOperator string `json:"logicalOperator" xorm:"'logical_operator' varchar(15) comment('Logical Operator') "`
- ParamName string `json:"paramName" xorm:"'param_name' varchar(127) comment('Param Name') "`
- CompareOperator string `json:"compareOperator" xorm:"'compare_operator' varchar(15) comment('Compare Operator') "`
- ParamType int64 `json:"paramType" xorm:"'param_type' bigint comment('Param Type') "`
- ParamValue string `json:"paramValue" xorm:"'param_value' varchar(127) comment('Param Value') "`
- ParamRemark string `json:"paramRemark" xorm:"'param_remark' varchar(255) comment('Param Remark') "`
- IsRuled int64 `json:"isRuled" xorm:"'is_ruled' bigint comment('Is Ruled') "`
- RuleId int64 `json:"ruleId" xorm:"'rule_id' bigint comment('Rule ID') "`
- 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"
- }
|