hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.ruoyi.admin.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 审核管理全局设置
 * </p>
 *
 * @author hjl
 * @since 2024-06-17
 */
@Getter
@Setter
@TableName("sys_withdrawal_setting")
@ApiModel(value = "WithdrawalSetting对象", description = "审核管理全局设置")
public class WithdrawalSetting {
 
    @TableId("id")
    private Integer id;
 
    @ApiModelProperty("是否开启审核(0:未开启,1:已开启)")
    @TableField("enable_process")
    private Integer enableProcess;
 
 
}