| | |
| | | package com.example.springboot.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import java.sql.Date; |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 流程卡表 |
| | | */ |
| | | @Data |
| | | @TableName("flowcard") |
| | | public class FlowCard { |
| | | @TableName("`flowcard`") |
| | | public class Flowcard { |
| | | private Integer id;// 自增id |
| | | private String flowcard;// 流程卡id |
| | | private Integer number;// 玻璃数量 |
| | | private Integer line;// 任务路线 |
| | | private Integer state;// 状态 |
| | | private Integer method;// 出片方式 |
| | | private Date starttime;// 任务领取时间 |
| | | private Integer orderstate;// 任务领取时间 |
| | | private String customer;// 客户 |
| | | |
| | | |
| | | |
| | | /** |
| | | * 主键,自动生成 |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | public List<GlassInfo> glassinfo;// 玻璃信息 |
| | | |
| | | /** |
| | | * 流程卡 |
| | | */ |
| | | private String flowcard; |
| | | /** |
| | | * 总层数 |
| | | */ |
| | | private Integer totaltier; |
| | | /** |
| | | * 玻璃数量 |
| | | */ |
| | | private Integer number; |
| | | /** |
| | | * 任务线路 |
| | | */ |
| | | private Integer line; |
| | | /** |
| | | * 状态 |
| | | */ |
| | | private Integer state; |
| | | public void setglassinfo(List<GlassInfo> glassinfo) { |
| | | this.glassinfo = glassinfo; |
| | | } |
| | | |
| | | public List<GlassInfo> getglassinfo() { |
| | | return glassinfo; |
| | | } |
| | | } |