| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package cust
- import (
- "dashoo.cn/micro/app/model/cust/internal"
- "dashoo.cn/opms_libary/request"
- )
- // CustCustomerInvoiceHeader is the golang structure for table cust_customer_invoice_header.
- type CustCustomerInvoiceHeader internal.CustCustomerInvoiceHeader
- // Fill with you ideas below.
- type CustCustomerInvoiceHeaderListReq struct {
- request.PageReq
- SearchText string `json:"searchText"` // 客户名称,公司名称,纳税人识别号
- CustId int `json:"custId"` // 关联客户
- CuctName string `json:"cuctName"` // 客户名称
- CompanyName string `json:"companyName"` // 公司名称
- TaxNo string `json:"taxNo"` // 纳税人识别号
- }
- type CustCustomerInvoiceHeaderAddReq struct {
- CustId int `json:"custId"` // 关联客户
- CompanyName string `json:"companyName"` // 公司名称
- TaxNo string `json:"taxNo"` // 纳税人识别号
- Address string `json:"address"` // 地址
- Telephone string `json:"telephone"` // 电话
- BankNo string `json:"bankNo"` // 开户行及账号
- Remark string `json:"remark"` // 备注
- }
- type CustCustomerInvoiceHeaderUpdateReq struct {
- Id int `json:"id" v:"required#请输入Id"`
- CompanyName string `json:"companyName"` // 公司名称
- TaxNo string `json:"taxNo"` // 纳税人识别号
- Address string `json:"address"` // 地址
- Telephone string `json:"telephone"` // 电话
- BankNo string `json:"bankNo"` // 开户行及账号
- Remark *string `json:"remark"`
- }
|