rentaiming
2024-07-30 837da67d468fbcdd10ee27dcc44a94e7b1130a85
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlAuditRecord.java
@@ -24,16 +24,16 @@
@ApiModel(value = "SlAuditRecord对象", description = "审核管理")
public class SlAuditRecord {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
    @ApiModelProperty("审核记录的")
    @ApiModelProperty("审核管理id")
    @TableField("audit_id")
    private Integer auditId;
    private Long auditId;
    @ApiModelProperty("审核人id")
    @TableField("shenh_id")
    private Integer shenhId;
    private String shenhId;
    @ApiModelProperty("1 是管理员审核,2 主管审核,3 是主任审核")
    @TableField("type")
@@ -41,7 +41,7 @@
    @ApiModelProperty("1 待审核,2 是通过,3 是拒绝")
    @TableField("state")
    private String state;
    private Integer state;
    @ApiModelProperty("删除标志(0代表存在 2代表删除)")
    @TableField("del_flag")
@@ -63,5 +63,13 @@
    @TableField("update_time")
    private Date updateTime;
    @ApiModelProperty("审核时间")
    @TableField("shenh_time")
    private Date shenhTime;
    @ApiModelProperty("审核人名称")
    @TableField("shenh_name")
    private String shenhName;
}