New file |
| | |
| | | package com.mes.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | @Data //lombok 简写java代码 实体类的get与set |
| | | @TableName("`up_workstation`") |
| | | public class UpWorkstation { |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id;//上片工位表id |
| | | private Integer workstationid;//工位号 |
| | | private Integer deviceid;//设备id |
| | | private Integer enablestate;//启用状态 |
| | | private Integer workstate;//工作状态 |
| | | private Double patternwidth;//原片宽 |
| | | private Double patternheigth;//原片高 |
| | | private Double patternthickness;//原片厚度 |
| | | private Integer filmsid;//膜系 |
| | | private Integer number;//数量 |
| | | |
| | | } |