package request
|
|
type AddPlan struct {
|
Plan Plan `json:"plan"`
|
}
|
|
type Plan struct {
|
ClientId int `json:"clientId"`
|
Number string `json:"number"`
|
MemberId int `json:"memberId"`
|
SubOrderId int `json:"subOrderId"`
|
SalesDetailsId int `json:"salesDetailsId"`
|
StartTime string `json:"startTime"`
|
EndTime string `json:"endTime"`
|
Content string `json:"content"`
|
File string `json:"file"`
|
}
|
|
type UpdatePlan struct {
|
Id int `json:"id"`
|
Plan Plan `json:"plan"`
|
}
|
|
type GetPlanList struct {
|
PageInfo
|
Keyword string `json:"keyword"`
|
}
|