wu
2024-03-18 6356c6e148c854bb60ba1cd51fafdabfa932efff
springboot-vue3/src/main/java/com/example/springboot/entity/StorageTask.java
@@ -1,5 +1,8 @@
package com.example.springboot.entity;
//出片任务表
public class StorageTask{
    private Integer id;//自序
    private String taskType;//类型
@@ -8,7 +11,10 @@
    private String shelfRack;//起始位
    private String loadrack;//目标位
    private Integer count;//玻璃数量
    private Integer glasstype;//玻璃类型
    private Integer flowcard;//流程卡
    private Integer mateid;//配片id
    private Integer tier;//片序
    public Integer id() {
        return id;
@@ -66,6 +72,32 @@
        this.loadrack = loadrack;
    }
    public Integer getGlasstype() {
        return glasstype;
    }
    public void setGlasstype(Integer glasstype) {
        this.glasstype = glasstype;
    }
    public Integer getFlowcard() {
        return flowcard;
    }
    public void setFlowcard(Integer flowcard) {
        this.flowcard = flowcard;
    } public Integer getMateid() {
        return mateid;
    }
    public void setMateid(Integer mateid) {
        this.mateid = mateid;
    }
    public Integer geTier() {
        return tier;
    }
    public void setTier(Integer tier) {
        this.tier = tier;
    }
}