Administrator
2023-08-23 31fbe2a0b88bd33b3aef4b362b1aa849f566cc17
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
35
package com.ruoyi.alarmpoints.tube.domain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * 管线管理对象 ard_tubes
 * 
 * @author 刘苏义
 * @date 2023-03-13
 */
@Data
public class ArdTubesParam
{
    /** 名称 */
    private String name;
 
    /** 类型 */
    private String type;
 
    /** 管径 */
    private String pipeDiameter;
 
    /** 颜色 */
    private String color;
 
    @TableField(exist = false)
    private List<Long> deptList;
 
}