dividends_estimate.go
2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package models
import (
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/domain"
"time"
)
type DividendsEstimate struct {
tableName string `comment:"分红预算实体" pg:"dividends_estimates,alias:dividends_estimate"`
// 承接人分红预算记录ID
DividendsEstimateId int64 `comment:"承接人分红预算记录ID" pg:",pk"`
// 分红结算状态
DividendsAccountStatus int32 `comment:"分红结算状态"`
// 支付状态 1未支付,2已支付
PaymentStatus int32 `comment:"支付状态" pg:",default:1"`
// 分红金额
DividendsAmount float64 `comment:"分红金额"`
// 承接人分红预算单号
DividendsEstimateOrderNumber string `comment:"承接人分红预算单号"`
// 分红预算时间
DividendsEstimateTime time.Time `comment:"分红预算时间"`
// 参与分红类型,1承接人,2推荐人,3关联业务员
DividendsParticipateType int32 `comment:"参与分红类型,1承接人,2推荐人,3关联业务员"`
// 分红类型,1订单分红,2退货冲销,3金额激励
DividendsType int32 `comment:"分红类型,1订单分红,2退货冲销,3金额激励"`
// 分红类型名称
DividendsTypeName string `comment:"分红类型名称"`
// 分红订单号或退货单号
OrderOrReturnedOrderNum string `comment:"分红订单号或退货单号"`
// 共创项目合约编号
CooperationContractNumber string `comment:"共创项目合约编号"`
// 共创合约承接人id
CooperationContractUndertakerId int64 `comment:"共创合约承接人ID"`
// 分红用户
DividendsUser *domain.User `comment:"分红用户"`
// 分红比例
DividendsPercentage float64 `comment:"分红比例"`
// 分红阶段
DividendsStage int32 `comment:"分红阶段"`
// 数据所属组织机构
Org *domain.Org `comment:"数据所属组织机构"`
// 公司
Company *domain.Company `comment:"公司"`
// 操作人
Operator *domain.User `comment:"操作人"`
// 操作时间
OperateTime time.Time `comment:"操作时间"`
// 取消状态
IsCanceled bool `comment:"取消状态" pg:",use_zero"`
// 产品ID
OrderGoodId int64 `comment:"产品ID"`
// 创建时间
CreatedAt time.Time `comment:"创建时间"`
// 删除时间
DeletedAt time.Time `comment:"删除时间" pg:",soft_delete"`
// 更新时间
UpdatedAt time.Time `comment:"更新时间"`
// 账期结算Id
CreditAccountId int64 `comment:"creditAccountId"`
}