You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.entity.basic ;
import com.baomidou.mybatisplus.annotation.TableField ;
import com.baomidou.mybatisplus.annotation.TableName ;
import lombok.Data ;
import java.util.Date ;
/**
* 审批配置表
*/
@Data
@TableName ( value = "sys_approval_flow_config" )
public class SysApprovalFlowConfig {
/**
* 审核配置表主键
*/
@TableField ( value = "id" )
private String id ;
/**
* 审批类型( 字典表设置code用作区分类型)
*/
@TableField ( value = "type" )
private String type ;
/**
* 审批单据名称
*/
@TableField ( value = "typeName" )
private String typeName ;
/**
* 排序
*/
@TableField ( value = "approvalSort" )
private Integer approvalSort ;
/**
* 创建人
*/
@TableField ( value = "createUser" )
private String createUser ;
/**
* 创建时间
*/
@TableField ( value = "createTime" )
private Date createTime ;
/**
* 更新人
*/
@TableField ( value = "updateUser" )
private String updateUser ;
/**
* 更新时间
*/
@TableField ( value = "updateTime" )
private Date updateTime ;
}