无关风月
21 小时以前 7cab5bda99ca42188bc15b2dae7d1fa4d1833fd9
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
34
package com.ruoyi.order.api.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
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-07-08
 */
@Getter
@Setter
@TableName("sys_withdrawal_setting")
@ApiModel(value = "WithdrawalSetting对象", description = "审核管理全局设置")
public class WithdrawalSetting {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty("是否开启审核(0:未开启,1:已开启)")
    @TableField("enable_process")
    private Integer enableProcess;
 
 
}