正在显示
5 个修改的文件
包含
5 行增加
和
5 行删除
@@ -8,7 +8,7 @@ import ( | @@ -8,7 +8,7 @@ import ( | ||
8 | type CooperationContractUndertaker struct { | 8 | type CooperationContractUndertaker struct { |
9 | tableName string `comment:"共创合约承接人" pg:"cooperation_contract_undertakers,alias:cooperation_contract_undertaker"` | 9 | tableName string `comment:"共创合约承接人" pg:"cooperation_contract_undertakers,alias:cooperation_contract_undertaker"` |
10 | // 共创合约承接人id | 10 | // 共创合约承接人id |
11 | - CooperationContractUndertakerId int64 `comment:"共创合约承接人id" pg:",pk,unique"` | 11 | + CooperationContractUndertakerId int64 `comment:"共创合约承接人id" pg:",pk"` |
12 | // 共创合约编号 | 12 | // 共创合约编号 |
13 | CooperationContractNumber string `comment:"共创合约编号"` | 13 | CooperationContractNumber string `comment:"共创合约编号"` |
14 | // 共创合约承接人uid | 14 | // 共创合约承接人uid |
@@ -8,7 +8,7 @@ import ( | @@ -8,7 +8,7 @@ import ( | ||
8 | type DividendsIncentivesRule struct { | 8 | type DividendsIncentivesRule struct { |
9 | tableName string `comment:"金额激励规则实体" pg:"dividends_incentives_rules,alias:dividends_incentives_rule"` | 9 | tableName string `comment:"金额激励规则实体" pg:"dividends_incentives_rules,alias:dividends_incentives_rule"` |
10 | // 分红规则ID | 10 | // 分红规则ID |
11 | - DividendsIncentivesRuleId int64 `comment:"分红规则ID" pg:",pk,unique"` | 11 | + DividendsIncentivesRuleId int64 `comment:"分红规则ID" pg:",pk"` |
12 | // 关联的项目合约编号 | 12 | // 关联的项目合约编号 |
13 | CooperationContractNumber string `comment:"关联的项目合约编号"` | 13 | CooperationContractNumber string `comment:"关联的项目合约编号"` |
14 | // 推荐人抽成比例 | 14 | // 推荐人抽成比例 |
@@ -10,7 +10,7 @@ type DividendsOrder struct { | @@ -10,7 +10,7 @@ type DividendsOrder struct { | ||
10 | // 分红订单ID | 10 | // 分红订单ID |
11 | DividendsOrderId int64 `comment:"分红订单ID" pg:",pk"` | 11 | DividendsOrderId int64 `comment:"分红订单ID" pg:",pk"` |
12 | // 分红订单号 | 12 | // 分红订单号 |
13 | - DividendsOrderNumber string `comment:"分红订单号" pg:",unique"` | 13 | + DividendsOrderNumber string `comment:"分红订单号"` |
14 | // 分红订单原单号 | 14 | // 分红订单原单号 |
15 | DividendsOriginalOrderNum string `comment:"分红订单原单号"` | 15 | DividendsOriginalOrderNum string `comment:"分红订单原单号"` |
16 | // 分红订单金额 | 16 | // 分红订单金额 |
@@ -10,7 +10,7 @@ type DividendsReturnedOrder struct { | @@ -10,7 +10,7 @@ type DividendsReturnedOrder struct { | ||
10 | // 分红退货单记录ID | 10 | // 分红退货单记录ID |
11 | DividendsReturnedOrderId int64 `comment:"分红退货单记录ID" pg:",pk"` | 11 | DividendsReturnedOrderId int64 `comment:"分红退货单记录ID" pg:",pk"` |
12 | // 分红退货单号 | 12 | // 分红退货单号 |
13 | - DividendsReturnedOrderNumber string `comment:"分红退货单号" pg:",unique"` | 13 | + DividendsReturnedOrderNumber string `comment:"分红退货单号"` |
14 | // 退货金额 | 14 | // 退货金额 |
15 | DividendsReturnedOrderRefund float64 `comment:"退货金额"` | 15 | DividendsReturnedOrderRefund float64 `comment:"退货金额"` |
16 | // 源单号(原始订单号) | 16 | // 源单号(原始订单号) |
@@ -8,7 +8,7 @@ import ( | @@ -8,7 +8,7 @@ import ( | ||
8 | type MoneyIncentivesRule struct { | 8 | type MoneyIncentivesRule struct { |
9 | tableName string `comment:"金额激励规则实体" pg:"money_incentives_rules,alias:money_incentives_rule"` | 9 | tableName string `comment:"金额激励规则实体" pg:"money_incentives_rules,alias:money_incentives_rule"` |
10 | // 金额激励规则ID | 10 | // 金额激励规则ID |
11 | - MoneyIncentivesRuleId int64 `comment:"金额激励规则ID" pg:",pk,unique"` | 11 | + MoneyIncentivesRuleId int64 `comment:"金额激励规则ID" pg:",pk"` |
12 | // 关联的共创合约编号 | 12 | // 关联的共创合约编号 |
13 | CooperationContractNumber string `comment:"关联的共创合约编号"` | 13 | CooperationContractNumber string `comment:"关联的共创合约编号"` |
14 | // 激励金额 | 14 | // 激励金额 |
-
请 注册 或 登录 后发表评论