package viewmodels type BizObjectRuleInfo struct { RoId int64 `json:"roId" xorm:"'ro_id' bigint pk comment('主键ID') "` BizId int64 `json:"bizId" xorm:"'biz_id' bigint comment('BIZ ID') "` ObjectId int64 `json:"objectId" xorm:"'object_id' bigint comment('Object ID') "` RuleId int64 `json:"ruleId" xorm:"'rule_id' bigint comment('Rule ID') "` 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" }