This commit is contained in:
邹宗楠
2025-07-15 18:16:09 +08:00
parent aa03e543b6
commit c3fb38473c
8 changed files with 262 additions and 9 deletions

View File

@@ -37,6 +37,22 @@ const (
CmdTypeFallBack = "FALLBACK" // 分账退回
)
type LakalaContract struct {
ModelIDCUL
ContractId string `orm:"column(contract_id);size(20)" json:"contractId"` // 订单编号
ContractApplyId string `orm:"column(contract_apply_id);size(20)" json:"contractApplyId"` // 电子合同编号
ContractStatus string `orm:"column(contract_status);size(20)" json:"ContractStatus"` // 合同状态
StoreId int `orm:"column(store_id);size(16)" json:"storeId"` // 京西门店ID
ApplyType string `orm:"column(apply_type);size(16)" json:"applyType"` // 申请类型
}
func (o *LakalaContract) TableUnique() [][]string {
return [][]string{
[]string{"StoreID"},
[]string{"contract_id"},
}
}
// LakalaIncoming 进件账户状态,分账状态
type LakalaIncoming struct {
ModelIDCUL