package request import ( "aps_crm/constvar" "aps_crm/model" ) type AddInvoiceType struct { model.InvoiceType } type UpdateInvoiceType struct { Id int `json:"id"` model.InvoiceType } type GetInvoiceTypeList struct { PageInfo QueryClass constvar.InvoiceTypeQueryClass `json:"queryClass" form:"queryClass"` KeywordType constvar.InvoiceTypeKeywordType `json:"keywordType" form:"keywordType"` Keyword string `json:"keyword" form:"keyword"` }