package request import ( "aps_crm/model" ) type AddServiceCollectionPlan struct { List []*model.ServiceCollectionPlan `json:"list" binding:"required"` } type UpdateServiceCollectionPlan struct { Id int `json:"id"` model.ServiceCollectionPlan } type GetServiceCollectionPlanList struct { ServiceContractId int `gorm:"service_contract_id" form:"serviceContractId"` // 服务合同id }