zhangqian
2023-11-01 530fed8ec225453572d57b15c200ab062c335457
model/request/contract.go
@@ -5,12 +5,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"`
   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
   SendTime     string `json:"sendTime"`    //发货时间
}
type UpdateContract struct {
@@ -20,5 +23,9 @@
type GetContractList struct {
   PageInfo
   Keyword string `json:"keyword"`
   SearchMap map[string]interface{} `json:"search_map"` // 搜索条件: map[string]interface{} {"member_name": "销售负责人", "number": "合同编号", "created_at": "创建时间"}
}
type DeleteContract struct {
   Ids []int `json:"ids"`
}