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