cust_customer_invoice_header.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package cust
  5. import (
  6. "dashoo.cn/micro/app/model/cust/internal"
  7. "dashoo.cn/opms_libary/request"
  8. )
  9. // CustCustomerInvoiceHeader is the golang structure for table cust_customer_invoice_header.
  10. type CustCustomerInvoiceHeader internal.CustCustomerInvoiceHeader
  11. // Fill with you ideas below.
  12. type CustCustomerInvoiceHeaderListReq struct {
  13. request.PageReq
  14. SearchText string `json:"searchText"` // 客户名称,公司名称,纳税人识别号
  15. CustId int `json:"custId"` // 关联客户
  16. CuctName string `json:"cuctName"` // 客户名称
  17. CompanyName string `json:"companyName"` // 公司名称
  18. TaxNo string `json:"taxNo"` // 纳税人识别号
  19. }
  20. type CustCustomerInvoiceHeaderAddReq struct {
  21. CustId int `json:"custId"` // 关联客户
  22. CompanyName string `json:"companyName"` // 公司名称
  23. TaxNo string `json:"taxNo"` // 纳税人识别号
  24. Address string `json:"address"` // 地址
  25. Telephone string `json:"telephone"` // 电话
  26. BankNo string `json:"bankNo"` // 开户行及账号
  27. Remark string `json:"remark"` // 备注
  28. }
  29. type CustCustomerInvoiceHeaderUpdateReq struct {
  30. Id int `json:"id" v:"required#请输入Id"`
  31. CompanyName string `json:"companyName"` // 公司名称
  32. TaxNo string `json:"taxNo"` // 纳税人识别号
  33. Address string `json:"address"` // 地址
  34. Telephone string `json:"telephone"` // 电话
  35. BankNo string `json:"bankNo"` // 开户行及账号
  36. Remark *string `json:"remark"`
  37. }