44 lines
3.2 KiB
Go
44 lines
3.2 KiB
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package po
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
)
|
||
|
||
// Account is the golang structure for table account.
|
||
type Account struct {
|
||
AccountId string `json:"accountId" orm:"account_id" ` // 进件编号
|
||
ShopId string `json:"shopId" orm:"shop_id" ` // 商户编号
|
||
ShopType int `json:"shopType" orm:"shop_type" ` // 商户类型
|
||
Industry int `json:"industry" orm:"industry" ` // 所属行业
|
||
ShopName string `json:"shopName" orm:"shop_name" ` // 店铺名称
|
||
IdCard string `json:"idCard" orm:"id_card" ` // 身份证正反面
|
||
Name string `json:"name" orm:"name" ` // 法人姓名
|
||
IdNumber string `json:"idNumber" orm:"id_number" ` // 身份证号
|
||
Phone string `json:"phone" orm:"phone" ` // 手机号
|
||
Email string `json:"email" orm:"email" ` // 邮箱
|
||
License string `json:"license" orm:"license" ` // 营业执照
|
||
Uscc string `json:"uscc" orm:"uscc" ` // 统一社会信用代码
|
||
LicenseName string `json:"licenseName" orm:"license_name" ` // 营业执照名称
|
||
LicenseValidity string `json:"licenseValidity" orm:"license_validity" ` // 执照有效期
|
||
LicenseAddress string `json:"licenseAddress" orm:"license_address" ` // 营业执照地址
|
||
Area int `json:"area" orm:"area" ` // 商户营业地区
|
||
SettlementName string `json:"settlementName" orm:"settlement_name" ` // 结算户名
|
||
AccountBank string `json:"accountBank" orm:"account_bank" ` // 开户支行
|
||
BankCard string `json:"bankCard" orm:"bank_card" ` // 银行卡正反面
|
||
BankNumber string `json:"bankNumber" orm:"bank_number" ` // 银行卡号
|
||
BankPhone string `json:"bankPhone" orm:"bank_phone" ` // 预留手机号
|
||
AccountNumber string `json:"accountNumber" orm:"account_number" ` // 开户人证件号
|
||
Manager string `json:"manager" orm:"manager" ` // 客户经理
|
||
Rates float64 `json:"rates" orm:"rates" ` // 费率
|
||
Extend string `json:"extend" orm:"extend" ` // 附加信息
|
||
AccountDate *gtime.Time `json:"accountDate" orm:"account_date" ` // 进件日期
|
||
State int `json:"state" orm:"state" ` // 进件状态
|
||
DeleteFlag int `json:"deleteFlag" orm:"delete_flag" ` // 0:未删除 1:已删除
|
||
CreateTime *gtime.Time `json:"createTime" orm:"create_time" ` // 创建时间
|
||
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" ` // 最后更新时间
|
||
}
|