github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_audit.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  // SysAudit is the golang structure of table sys_audit for DAO operations like Where/Data.
    13  type SysAudit struct {
    14  	g.Meta         `orm:"table:sys_audit, do:true"`
    15  	Id             interface{} //
    16  	State          interface{} // 审核状态:-1不通过,0待审核,1通过
    17  	Reply          interface{} // 不通过时回复的审核不通过原因
    18  	UnionMainId    interface{} // 关联主体ID
    19  	Category       interface{} // 业务类别:1个人资质审核、2主体资质审核、4数据审核
    20  	AuditData      interface{} // 待审核的业务数据包
    21  	ExpireAt       *gtime.Time // 服务时限
    22  	AuditReplyAt   *gtime.Time // 审核回复时间
    23  	HistoryItems   interface{} // 历史申请记录
    24  	CreatedAt      *gtime.Time //
    25  	AuditUserId    interface{} // 审核操作者id
    26  	DataIdentifier interface{} // 数据标识
    27  	UserId         interface{} // 关联用户ID
    28  }