package com.mes.hollow.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* (HollowGlassOutRelationInfo)表实体类
|
*
|
* @author makejava
|
* @since 2024-11-30 13:57:29
|
*/
|
@Data
|
public class HollowGlassOutRelationInfo {
|
/**
|
* /*中空玻璃关系表id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
/**
|
* /*流程卡
|
*/
|
private String flowCardId;
|
/**
|
* /*总层数
|
*/
|
private Integer totalLayer;
|
/**
|
* /*路线
|
*/
|
private Integer cell;
|
/**
|
* /*状态0新增 1执行中 2暂停 3结束
|
*/
|
private Integer state;
|
/**
|
* /*创建时间
|
*/
|
private Date createTime;
|
/**
|
* /*更新时间
|
*/
|
private Date updateTime;
|
|
|
}
|