package com.ruoyi.alarmpoints.tube.domain;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 管线管理对象 ard_tubes
|
*
|
* @author 刘苏义
|
* @date 2023-03-13
|
*/
|
@Data
|
public class ArdTubes extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private String id;
|
|
/** 名称 */
|
@Excel(name = "名称")
|
private String name;
|
|
/** 类型 */
|
@Excel(name = "类型")
|
private String type;
|
|
/** 管径 */
|
@Excel(name = "管径")
|
private String pipeDiameter;
|
|
/** 颜色 */
|
@Excel(name = "颜色")
|
private String color;
|
|
/** 子管线数量 */
|
@Excel(name = "子管线数量")
|
private Integer childCount;
|
|
/** 部门id */
|
@Excel(name = "部门id")
|
private Long deptId;
|
|
/** 用户id */
|
@ApiModelProperty(hidden = true)
|
private String userId;
|
|
}
|