github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_person_license.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_do
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/frame/g"
     9  	"github.com/gogf/gf/v2/os/gtime"
    10  )
    11  
    12  // SysPersonLicense is the golang structure of table sys_person_license for DAO operations like Where/Data.
    13  type SysPersonLicense struct {
    14  	g.Meta           `orm:"table:sys_person_license, do:true"`
    15  	Id               interface{} // ID
    16  	IdcardFrontPath  interface{} // 身份证头像面照片
    17  	IdcardBackPath   interface{} // 身份证国徽面照片
    18  	No               interface{} // 身份证号
    19  	Gender           interface{} // 性别
    20  	Nation           interface{} // 名族
    21  	Name             interface{} // 姓名
    22  	Birthday         interface{} // 出生日期
    23  	Address          interface{} // 家庭住址
    24  	IssuingAuthorit  interface{} // 签发机关
    25  	IssuingDate      interface{} // 签发日期
    26  	ExpriyDate       interface{} //
    27  	CreatedAt        *gtime.Time //
    28  	UpdatedAt        *gtime.Time //
    29  	DeletedAt        *gtime.Time //
    30  	State            interface{} // 状态:0失效、1正常
    31  	AuthType         interface{} // 认证类型:
    32  	Remark           interface{} // 备注信息
    33  	LatestAuditLogId interface{} // 最新的审核记录id
    34  }