manage_invoice_info.go 953 B

12345678910111213141516171819202122232425
  1. package http_model
  2. type ManageInvoiceInfoRequest struct {
  3. SupplierId int `json:"supplier_id"` // 服务商ID
  4. }
  5. type ManageInvoiceInfoData struct {
  6. InvoiceInfoID int `json:"invoice_info_id"` // 后台设置回票信息ID
  7. EnterpriseName string `json:"enterprise_name"` // 企业名称
  8. Address string `json:"address"` // 注册地址
  9. Phone string `json:"phone"` // 注册电话
  10. BankName string `json:"bank_name"` // 开户银行
  11. BankNumber string `json:"bank_number"` // 开户银行账号
  12. ProjectNameToChoose string `json:"project_name_to_choose"` // 项目名称可选
  13. }
  14. func NewManageInvoiceInfoRequest() *ManageInvoiceInfoRequest {
  15. return new(ManageInvoiceInfoRequest)
  16. }
  17. func NewManageInvoiceInfoResponse() *CommonResponse {
  18. resp := new(CommonResponse)
  19. resp.Data = new(ManageInvoiceInfoData)
  20. return resp
  21. }