package http_model type ManageInvoiceInfoRequest struct { SupplierId int `json:"supplier_id"` // 服务商ID } type ManageInvoiceInfoData struct { InvoiceInfoID int `json:"invoice_info_id"` // 后台设置回票信息ID EnterpriseName string `json:"enterprise_name"` // 企业名称 Address string `json:"address"` // 注册地址 Phone string `json:"phone"` // 注册电话 BankName string `json:"bank_name"` // 开户银行 BankNumber string `json:"bank_number"` // 开户银行账号 ProjectNameToChoose string `json:"project_name_to_choose"` // 项目名称可选 } func NewManageInvoiceInfoRequest() *ManageInvoiceInfoRequest { return new(ManageInvoiceInfoRequest) } func NewManageInvoiceInfoResponse() *CommonResponse { resp := new(CommonResponse) resp.Data = new(ManageInvoiceInfoData) return resp }