// ================================================================================= // 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" ` // 进件编号 PromoterId string `json:"promoterId" orm:"promoter_id" ` // 推广人编号 ShopId string `json:"shopId" orm:"shop_id" ` // 商户编号 SysFlowId string `json:"sysFlowId" orm:"sys_flow_id" ` // 银行流水号 ShopType string `json:"shopType" orm:"shop_type" ` // 商户类型 Mcc string `json:"mcc" orm:"mcc" ` // mcc行业分类 ShopName string `json:"shopName" orm:"shop_name" ` // 店铺名称 IdValidity string `json:"idValidity" orm:"id_validity" ` // 身份证有效期 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" ` // 邮箱 Uscc string `json:"uscc" orm:"uscc" ` // 统一社会信用代码 LicenseName string `json:"licenseName" orm:"license_name" ` // 营业执照名称 LicenseType string `json:"licenseType" orm:"license_type" ` // 营业执照类型 LicenseDate string `json:"licenseDate" orm:"license_date" ` // 执照日期 LicenseAddress string `json:"licenseAddress" orm:"license_address" ` // 营业执照地址 Area string `json:"area" orm:"area" ` // 商户营业地区 IsUncrpSett bool `json:"isUncrpSett" orm:"is_uncrp_sett" ` // 是否法人结算 SettlementName string `json:"settlementName" orm:"settlement_name" ` // 结算户名 AccountBank string `json:"accountBank" orm:"account_bank" ` // 开户支行 BankNumber string `json:"bankNumber" orm:"bank_number" ` // 银行卡号 BankPhone string `json:"bankPhone" orm:"bank_phone" ` // 预留手机号 AccountNumber string `json:"accountNumber" orm:"account_number" ` // 开户人证件号 StlAccType string `json:"stlAccType" orm:"stl_acc_type" ` // 结算账户类型 StandByStl string `json:"standByStl" orm:"stand_by_stl" ` // 备用商户信息 UpwardImg string `json:"upwardImg" orm:"upward_img" ` // 上送图片 Manager string `json:"manager" orm:"manager" ` // 客户经理 Rates string `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" ` // 最后更新时间 }