1234567891011121314151617181920212223 |
- package gorm_model
- import "time"
- // Code generated by sql2gorm. DO NOT EDIT.
- type YounggeeInvoiceInfo struct {
- InvoiceID int64 `gorm:"column:invoice_id;primary_key;AUTO_INCREMENT"` // 发票信息id
- EnterpriseID string `gorm:"column:enterprise_id;NOT NULL"` // 企业id
- HeadType string `gorm:"column:head_type;NOT NULL"` // 抬头类型
- InvoiceHeader string `gorm:"column:invoice_header;NOT NULL"` // 发票抬头
- InvoiceType string `gorm:"column:invoice_type;NOT NULL"` // 发票类型
- TaxCode string `gorm:"column:tax_code;NOT NULL"` // 税务登记证号/统一社会信用代码
- Bank string `gorm:"column:bank;NOT NULL"` // 基本户开户银行
- BankCardNumber string `gorm:"column:bank_card_number;NOT NULL"` // 基本户开户银行账号
- RegisteredAddress string `gorm:"column:registered_address;NOT NULL"` // 企业注册地址
- RegisteredPhone string `gorm:"column:registered_phone;NOT NULL"` // 企业注册电话
- UpdateAt time.Time `gorm:"column:update_at;NOT NULL"` // 更新时间
- }
- func (m *YounggeeInvoiceInfo) TableName() string {
- return "younggee_invoice_info"
- }
|