| 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; | 
|   | 
| } |