| | |
| | | package com.example.springboot.entity; |
| | | |
| | | import java.util.Date; |
| | | import java.sql.Date; |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | |
| | | |
| | | @Data |
| | | @TableName("`flowcard`") |
| | | public class 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;// 任务领取时间 |
| | | |
| | | |
| | | |
| | | public List<GlassInfo> glassinfo;// 玻璃信息 |
| | | |
| | | public void setglassinfo(List<GlassInfo> glassinfo) { |
| | | this.glassinfo = glassinfo; |
| | | } |
| | | |
| | | public List<GlassInfo> getglassinfo() { |
| | | return glassinfo; |
| | | } |
| | | } |