zjh
2024-01-03 a2b14a4b47d4184b7d9ae885557840fee894d79a
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
package com.ltkj.system.domain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableLogic;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @Author: 西安路泰科技有限公司/赵佳豪
 * @Date: 2022/12/27 11:46
 */
@Data
public class SysParametersDispose implements Serializable {
    private static final long serialVersionUID = 1L;
    @TableField
    private Integer id;
    private Integer compId;
    private String disposeName;
    private String disposeValue;
    private String remarks;
    @TableLogic
    private Integer deleted;
 
}