zhaowenxuan
2025-02-06 06c12d2b42c343798d9476be66031b48967df639
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;
 
}