| 123456789101112131415161718192021 |
- package viewmodels
- type BizObjectOAMRuleInfo struct {
- BizId int64 `json:"bizId" xorm:"'biz_id' bigint comment('BIZ ID') "`
- ObjectId int64 `json:"objectId" xorm:"'object_id' bigint comment('Object ID') "`
- ObjectTitle string `json:"objectTitle" xorm:"'object_title' varchar(127) comment('Object Title') "`
- OamId int64 `json:"oamId" xorm:"'oam_id' bigint comment('Object OAM ID') "`
- OamTitle string `json:"oamTitle" xorm:"'oam_title' varchar(127) comment('OAMTitle') "`
- OrId int64 `json:"orId" xorm:"'or_id' bigint pk comment('Object Rule ID') "`
- RuleId int64 `json:"ruleId" xorm:"'rule_id' bigint comment('Rule ID') "`
- RuleType int64 `json:"ruleType" xorm:"'rule_type' bigint comment('Type') "`
- RuleTitle string `json:"ruleTitle" xorm:"'rule_title' varchar(127) comment('模型名称') "`
- TargetAttrId int64 `json:"targetAttrId" xorm:"'target_attr_id' bigint comment('Target AttrId') "`
- TargetAttrTitle string `json:"targetAttrTitle" xorm:"'target_attr_title' varchar(127) comment('Target AttrTitle')"`
- TargetAttrCode string `json:"targetAttrCode" xorm:"'target_attr_code' varchar(127) comment('Target AttrCode') "`
- RuleCode string `json:"ruleCode" xorm:"'rule_code' varchar(127) comment('Rule Code') "`
- }
- func (t *BizObjectOAMRuleInfo) TableName() string {
- return "biz_object_oam_rule"
- }
|