严智鑫
2024-03-18 ef47083c90ff7e70362a32741a0a4d5770037e7f
springboot-vue3/src/main/java/com/example/springboot/entity/FlowCard.java
@@ -1,43 +1,30 @@
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")
@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;// 任务领取时间
    /**
     * 主键,自动生成
     */
    @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;
  }
}