Updata:增加区号字段

This commit is contained in:
jiaji.H 2026-02-02 15:22:21 +08:00
parent 2cf1b946d0
commit 01e488555f
2 changed files with 8 additions and 5 deletions

View File

@ -39,6 +39,7 @@ type PaperInvoiceAddress struct {
OrderNo string `gorm:"column:order_no;comment:订单编号"`
InvoiceNo string `gorm:"column:invoice_no;comment:发票编号"`
Name string `gorm:"column:name;comment:申请纸质发票姓名"`
TelAreaCode string `gorm:"column:tel_area_code;comment:申请纸质发票电话区号"`
Phone string `gorm:"column:phone;comment:申请纸质发票电话"`
PostalCode string `gorm:"column:postal_code;type:varchar(20);comment:申请纸质发票邮政编码"`
Country string `gorm:"column:country;comment:申请纸质发票国家"`
@ -79,6 +80,7 @@ type InvoiceOrderInfo struct {
}
type InvoiceInfoByOrderNo struct {
OrderNo string `gorm:"column:order_no;comment:订单编号"`
InvoiceNo string `gorm:"column:invoice_no;comment:发票编号"`
InvoiceUrl string `gorm:"column:invoice_url;comment:发票URL"`
BundleName string `gorm:"column:bundle_name;comment:套餐名称"`

View File

@ -1919,11 +1919,12 @@ message CreatePaperInvoiceAddressReq{
string orderNo = 2;
string invoiceNo = 3;
string name = 4;
string phone = 5;
string postalCode = 6;
string country = 7;
string address = 8;
string remark = 9;
string telAreaCode = 5;
string phone = 6;
string postalCode = 7;
string country = 8;
string address = 9;
string remark = 10;
}
message CreatePaperInvoiceAddressResp{