zhangqian
2023-08-10 12e09639dcbfa63b5a23cde8642b72829d4f3a3b
model/request/serviceContract.go
@@ -15,17 +15,17 @@
   MemberId     int             `json:"memberId"`
   ContactId    int             `json:"contactId"`
   SaleChanceId int             `json:"saleChanceId"`
   ContractId   int             `json:"contractId"`
   SalesDetailsId int              `json:"salesDetailsId"`
   QuotationId  int             `json:"quotationId"`
   TypeId       int             `json:"typeId"`
   SignTime     string          `json:"signTime"`
   StartTime    string          `json:"startTime"`
   EndTime      string          `json:"endTime"`
   SignTime       string           `json:"signTime" binding:"datetime=2006-01-02"`
   StartTime      string           `json:"startTime" binding:"datetime=2006-01-02"`
   EndTime        string           `json:"endTime" binding:"datetime=2006-01-02"`
   StatusId     int             `json:"statusId"`
   ServiceTimes int             `json:"serviceTimes"`
   Terms        string          `json:"terms"`
   Remark       string          `json:"remark"`
   Products     []model.Product `json:"products"`
   Products       []*model.Product `json:"products"`
}
type UpdateServiceContract struct {
@@ -40,6 +40,6 @@
   Keyword     string                              `json:"keyword"`
}
type DeleteserviceContract struct {
type DeleteServiceContract struct {
   Ids []int `json:"ids"`
}