作者 yangfu

表结构调整

... ... @@ -10,10 +10,10 @@ import (
type ChanceSelfCheck struct {
Id int64 `orm:"column(id);pk" description:"编号"`
UserCompanyId int64 `orm:"column(user_company_id);null" description:"提交人"`
ChanceId int64 `orm:"column(chanceId);null" description:"机会编号"`
RelateId int64 `orm:"column(relateId)" description:"关联编号 机会编号 / 审核流程编号"`
CheckItem string `orm:"column(checkItem);size(50)" description:"检查项"`
GroupId int64 `orm:"column(groupId)" description:"分组编号(audit_check.id/pid)"`
ChanceId int64 `orm:"column(chance_id);null" description:"机会编号"`
RelateId int64 `orm:"column(relate_id)" description:"关联编号 机会编号 / 审核流程编号"`
CheckItem string `orm:"column(check_item);size(50)" description:"检查项"`
GroupId int64 `orm:"column(group_id)" description:"分组编号(audit_check.id/pid)"`
Answer string `orm:"column(answer);size(50);null" description:"回答"`
Reason string `orm:"column(reason);size(200);null" description:"理由"`
CreateAt time.Time `orm:"column(create_at);type(timestamp);null" description:"创建时间"`
... ...