fix
wangpengfei
2023-08-07 cddf1d93735052590755460f4b3c8264e0d57399
model/request/serviceFollowup.go
@@ -1,35 +1,35 @@
package request
type AddServiceFollowup struct {
   ServiceFollowup
}
type ServiceFollowup struct {
   ClientId     int    `json:"clientId"`
   Number       string `json:"number"`
   ContactId    int    `json:"contactId"`
   ServiceId    int    `json:"serviceId"`
   MemberId     int    `json:"memberId"`
   PlanId       int    `json:"planId"`
   Satisfaction int    `json:"satisfaction"`
   TimelyRate   int    `json:"timelyRate"`
   SolveRate    int    `json:"solveRate"`
   IsVisit      int    `json:"isVisit"`
   OldMemberId  int    `json:"oldMemberId"`
   Remark       string `json:"remark"`
   File         string `json:"file"`
}
type UpdateServiceFollowup struct {
   Id int `json:"id"`
   ServiceFollowup
}
type GetServiceFollowupList struct {
   PageInfo
   Keyword string `json:"keyword"`
}
type DeleteServiceFollowup struct {
   Ids []int `json:"ids"`
}
package request
type AddServiceFollowup struct {
   ServiceFollowup
}
type ServiceFollowup struct {
   ClientId     int    `json:"clientId"`
   Number       string `json:"number"`
   ContactId    int    `json:"contactId"`
   ServiceId    int    `json:"serviceId"`
   MemberId     int    `json:"memberId"`
   PlanId       int    `json:"planId"`
   Satisfaction int    `json:"satisfaction"`
   TimelyRate   int    `json:"timelyRate"`
   SolveRate    int    `json:"solveRate"`
   IsVisit      int    `json:"isVisit"`
   OldMemberId  int    `json:"oldMemberId"`
   Remark       string `json:"remark"`
   File         string `json:"file"`
}
type UpdateServiceFollowup struct {
   Id int `json:"id"`
   ServiceFollowup
}
type GetServiceFollowupList struct {
   PageInfo
   Keyword string `json:"keyword"`
}
type DeleteServiceFollowup struct {
   Ids []int `json:"ids"`
}