liusuyi
2026-05-18 b5cd784d0cde5b7c82ea78aef4ac0e5a161d8c5d
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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;
 
}