1
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user