rentaiming
2024-07-08 8a5c6e55d8e35a5da08285bbba5c0d1785952ea8
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("审核记录的")
    @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")