lxw
2022-08-20 659d746b6c7d752c1b85544a34250df51a766ce6
src/main/java/com/whyc/pojo/WorksheetMain.java
@@ -1,6 +1,7 @@
package com.whyc.pojo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.whyc.config.EnumWorksheetType;
import io.swagger.annotations.ApiModelProperty;
@@ -66,6 +67,13 @@
    @TableField(exist = false)
    private DocUser approvingUser;
    @ApiModelProperty("待审批散装件")
    @TableField(exist = false)
    private List<MaterialApproving> cApprovingList;
    @TableField(exist = false)
    private List<MaterialProductApproving> cpApprovingList;
    public Integer getId() {
        return id;
@@ -202,4 +210,20 @@
    public void setType(Integer type) {
        this.type = type;
    }
   public List<MaterialApproving> getCApprovingList() {
        return cApprovingList;
    }
    public void setCApprovingList(List<MaterialApproving> cApprovingList) {
        this.cApprovingList = cApprovingList;
    }
    public List<MaterialProductApproving> getCpApprovingList() {
        return cpApprovingList;
    }
    public void setCpApprovingList(List<MaterialProductApproving> cpApprovingList) {
        this.cpApprovingList = cpApprovingList;
    }
}