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("`down_workstation`")
|
public class DownWorkstation {
|
@TableId(type = IdType.AUTO)
|
private Integer id;//下片工位表id
|
private Integer flowcard_id;//工位id
|
private String glass_type;//流程卡号
|
private Integer width;//设备id
|
private Integer height;//启用状态
|
private Integer thickness;//工作状态
|
|
}
|