package viewmodels type BizObjectRuleInfo 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') "` RuleCode string `json:"ruleCode" xorm:"'rule_code' varchar(1023) comment('Rule Code') "` } func (t *BizObjectRuleInfo) TableName() string { return "biz_object_rule" }