| | |
| | | |
| | | import ( |
| | | "aps_crm/model" |
| | | "aps_crm/proto/code" |
| | | ) |
| | | |
| | | type AddQuotation struct { |
| | |
| | | } |
| | | |
| | | type Quotation struct { |
| | | QuotationName string `json:"quotationName"` //报价单名称 |
| | | ClientId int `json:"client_id"` |
| | | Number string `json:"number"` |
| | | QuotationStatusId int `json:"quotation_status_id"` |
| | | ValidityDate string `json:"validity_date"` |
| | | ContactId int `json:"contact_id"` |
| | | MemberId int `json:"member_id"` |
| | | SaleChanceId int `json:"sale_chance_id"` |
| | | Conditions string `json:"conditions"` |
| | | File string `json:"file"` |
| | | CodeStandID string `json:"codeStandID"` //编码id |
| | | CodeRule code.CodeStandard `json:"codeRule"` |
| | | Products []model.Product `json:"products"` |
| | | QuotationName string `json:"quotationName"` //报价单名称 |
| | | ClientId int `json:"client_id"` |
| | | Number string `json:"number"` |
| | | QuotationStatusId int `json:"quotation_status_id"` |
| | | ValidityDate string `json:"validity_date"` |
| | | ContactId int `json:"contact_id"` |
| | | MemberId int `json:"member_id"` |
| | | SaleChanceId int `json:"sale_chance_id"` |
| | | Conditions string `json:"conditions"` |
| | | File string `json:"file"` |
| | | CodeStandID string `json:"codeStandID"` //编码id |
| | | Products []model.Product `json:"products"` |
| | | } |
| | | |
| | | type UpdateQuotation struct { |