package request import ( "aps_crm/constvar" "aps_crm/model" ) type AddReceipt struct { model.Receipt } type UpdateReceipt struct { Id int `json:"id"` model.Receipt } type GetReceiptList struct { PageInfo SourceType constvar.ReceiptSourceType `json:"sourceType" form:"sourceType"` SourceId int `json:"sourceId" form:"sourceId"` }