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_glass_info`")
|
public class DownGlassInfo {
|
@TableId(type = IdType.AUTO)
|
private Integer id;//下片玻璃信息表id
|
private String flowcardid;//流程卡号
|
private Integer sequence;//顺序
|
private Integer width;//宽
|
private Integer height;//高
|
private Integer thickness;//厚度
|
|
}
|