zhaowenxuan
2025-04-30 aacaa3d2daafbd97ab008908b9f2fe9ed6c1f713
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;
 
}