package com.ard.work.api.domian;
|
|
import com.ard.common.core.annotation.Excel;
|
import com.ard.common.core.web.domain.BaseEntity;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.util.List;
|
|
/**
|
* 管线管理对象 ard_tubes
|
*
|
* @author XiaJiJian
|
* @date 2024-09-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 String userId;
|
|
/** 部门id */
|
@Excel(name = "部门id")
|
private Integer deptId;
|
|
/** 管材详细信息管理对象 */
|
private List<ArdTubesDetails> ardTubesDetails;
|
|
}
|