ZengTao
2024-06-17 70f2265af5c8ec078ef2a7be65dd7229ab5f2924
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.example.springboot.entity;
 
import java.sql.Date;
import java.util.List;
 
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Data;
 
@Data
@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;// 任务领取时间
  
  
 
  public List<GlassInfo> glassinfo;// 玻璃信息
 
  public void setglassinfo(List<GlassInfo> glassinfo) {
    this.glassinfo = glassinfo;
  }
 
  public List<GlassInfo> getglassinfo() {
    return glassinfo;
  }
}