| | |
| | | package com.mes.engineering.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | |
| | | /** |
| | | * 工程表id |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 工程号 |
| | | */ |
| | | private String engineerId; |
| | | private String engineerId; |
| | | |
| | | /** |
| | | * 设备 |
| | | */ |
| | | private Integer stationCell; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 工程名称 |
| | |
| | | */ |
| | | private String notes; |
| | | |
| | | |
| | | /** |
| | | * 除膜方式 |
| | | */ |
| | | @TableField(exist = false) |
| | | private Integer filmRemove; |
| | | } |