liujiandao
2023-10-13 5fa1de02759b9646e8987312736699755990e960
model/request/contract.go
@@ -7,14 +7,15 @@
}
type Contract struct {
   ClientId    int               `json:"client_id"`
   MemberId    int               `json:"member_id"`
   Number      string            `json:"number"`
   QuotationId int               `json:"quotation_id"`
   StatusId    int               `json:"status_id"`
   File        string            `json:"file"`
   CodeStandID string            `json:"codeStandID"` //编码id
   CodeRule    code.CodeStandard `json:"codeRule"`
   ContractName string            `json:"contractName"` //合同名称
   ClientId     int               `json:"client_id"`
   MemberId     int               `json:"member_id"`
   Number       string            `json:"number"`
   QuotationId  int               `json:"quotation_id"`
   StatusId     int               `json:"status_id"`
   File         string            `json:"file"`
   CodeStandID  string            `json:"codeStandID"` //编码id
   CodeRule     code.CodeStandard `json:"codeRule"`
}
type UpdateContract struct {