shenyijian
2024-06-21 f20611265f7d34fd4fbcdfdaff6cb9cccd0b25fc
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
57
58
59
package cn.gistack.sm.sg.DO;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
import org.springblade.core.mp.base.BaseEntity;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 施工工序步骤表
 * </p>
 *
 * @author shenyijian
 * @since 2024-06-13 15:46:18
 */
@Getter
@Setter
@TableName("SG_GX_STEP")
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class SgGxStepDO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 工序编号
     */
    private String gxStepNum;
 
    /**
     * 工序步骤名称
     */
    private String gxStepName;
 
    /**
     * 工序基础信息id
     */
    private Long gxInfoId;
 
    /**
     * 介绍
     */
    private String remark;
 
    @TableField(exist = false)
    private Integer approvalStatus;
 
    @TableField(exist = false)
    private Long deviceId;
}