作者 tangxvhui

bug 修复

... ... @@ -8,7 +8,7 @@ import (
)
type AchievementChance struct {
Id int64 `orm:"column(id);pk"`
Id int64 `orm:"column(id);auto"`
AchievementId int64 `orm:"column(achievement_id);null" description:"成果编号 表achievement.id"`
ChanceId int64 `orm:"column(chance_id);null" description:"机会编号 表chance.id"`
ChanceCode string `orm:"column(chance_code);size(255);null" description:"机会编号 表chance.code"`
... ...
... ... @@ -8,7 +8,7 @@ import (
)
type AchievementProvider struct {
Id int64 `orm:"column(id);pk" description:"主键id"`
Id int64 `orm:"column(id);auto" description:"主键id"`
AchievementId int64 `orm:"column(achievement_id);null" description:"表achievement.id"`
UserCompanyId int64 `orm:"column(user_company_id);null" description:"user_company.id"`
UserGraspScore float64 `orm:"column(user_grasp_score);null;digits(4);decimals(1)" description:"把握人得分"`
... ...