zhangqian
2023-08-11 d8ac88cfb72e3aac3a89c3cfe77774be3024a24c
model/request/serviceFollowup.go
@@ -1,39 +1,39 @@
package request
import "aps_crm/constvar"
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
   KeywordType    constvar.ServiceFollowupKeywordType `json:"keywordType"`
   Keyword        string                              `json:"keyword"`
   ServiceOrderId int                                 `json:"serviceOrderId"` //服务回访单id
}
type DeleteServiceFollowup struct {
   Ids []int `json:"ids"`
}
package request
import "aps_crm/constvar"
type AddServiceFollowup struct {
   ServiceFollowup
}
type ServiceFollowup struct {
   ClientId       int    `json:"clientId"`
   Number         string `json:"number"`
   ContactId      int    `json:"contactId"`
   ServiceOrderId int    `json:"serviceOrderId"`
   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
   KeywordType    constvar.ServiceFollowupKeywordType `json:"keywordType"`
   Keyword        string                              `json:"keyword"`
   ServiceOrderId int                                 `json:"serviceOrderId"` //服务回访单id
}
type DeleteServiceFollowup struct {
   Ids []int `json:"ids"`
}