|
@@ -16,7 +16,7 @@ type Contract struct {
|
|
|
SellerName string `description:"所属销售名称"`
|
|
|
ProductId int `description:"产品id,1:ficc;2:权益"`
|
|
|
ContractType string `description:"合同类型,枚举值:'新签合同','续约合同','补充协议'"`
|
|
|
- Status string `description:"合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已签回'"`
|
|
|
+ Status string `description:"合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已签回','已解约'"`
|
|
|
StartDate time.Time `description:"合同开始日期"`
|
|
|
EndDate time.Time `description:"合同结束日期"`
|
|
|
OriginalPrice float64 `description:"合同原金额,优惠前的金额"`
|
|
@@ -37,6 +37,7 @@ type Contract struct {
|
|
|
ApprovalRemark string `description:"审核备注"`
|
|
|
FileUrl string `description:"合同文件地址"`
|
|
|
CheckBackFileUrl string `description:"签回合同文件地址"`
|
|
|
+ RescindFileUrl string `description:"解约合同文件地址"`
|
|
|
TemplateId int `description:"模板id"`
|
|
|
SourceId int `description:"来源合同id,默认是0;如果是通过其他合同复制过来的,那么就是原合同的id"`
|
|
|
IsDelete int `description:"是否已经删除,0:未删除,1:已删除",json:"-"`
|
|
@@ -67,7 +68,7 @@ type ContractDetail struct {
|
|
|
SellerName string `description:"所属销售名称"`
|
|
|
ProductId int `description:"产品id,1:ficc;2:权益"`
|
|
|
ContractType string `description:"合同类型,枚举值:'新签合同','续约合同','补充协议'"`
|
|
|
- Status string `description:"合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'"`
|
|
|
+ Status string `description:"合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已解约'"`
|
|
|
StartDate time.Time `description:"合同开始日期"`
|
|
|
EndDate time.Time `description:"合同结束日期"`
|
|
|
OriginalPrice float64 `description:"合同原金额,优惠前的金额"`
|
|
@@ -84,10 +85,12 @@ type ContractDetail struct {
|
|
|
Phone string `description:"电话,长度32位"`
|
|
|
Postcode string `description:"邮编,长度16位"`
|
|
|
Remark string `description:"补充内容,长度255位"`
|
|
|
+ SellerRemark string `description:"销售备注,长度255位"`
|
|
|
ModifyContent string `description:"修改内容"`
|
|
|
ApprovalRemark string `description:"审核备注"`
|
|
|
FileUrl string `description:"合同文件地址"`
|
|
|
CheckBackFileUrl string `description:"签回合同文件地址"`
|
|
|
+ RescindFileUrl string `description:"解约合同文件地址"`
|
|
|
TemplateId int `description:"模板id"`
|
|
|
SourceId int `description:"来源合同id,默认是0;如果是通过其他合同复制过来的,那么就是原合同的id"`
|
|
|
IsDelete int `json:"-";description:"是否已经删除,0:未删除,1:已删除"`
|
|
@@ -193,6 +196,7 @@ type ContractList struct {
|
|
|
Phone string `description:"电话,长度32位"`
|
|
|
Postcode string `description:"邮编,长度16位"`
|
|
|
Remark string `json:"-";description:"补充内容,长度255位"`
|
|
|
+ SellerRemark string `description:"销售备注,长度255位"`
|
|
|
ApprovalRemark string `description:"审核备注"`
|
|
|
ModifyContent string `description:"修改内容"`
|
|
|
FileUrl string `description:"合同文件地址"`
|