严智鑫
2024-03-31 d6103e86a0a8b453a1f6bddd262ea0a5e7f2a380
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
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;// 任务领取时间
  
 
  public List<GlassInfo> glassinfo;// 玻璃信息
 
  public void setglassinfo(List<GlassInfo> glassinfo) {
    this.glassinfo = glassinfo;
  }
 
  public List<GlassInfo> getglassinfo() {
    return glassinfo;
  }
}