lxw
2022-08-13 5d0f425324ee72e50f0b7ad5200ccebab32e7099
src/main/java/com/whyc/pojo/WorksheetMain.java
@@ -67,6 +67,13 @@
    @TableField(exist = false)
    private DocUser approvingUser;
    @ApiModelProperty("待审批散装件")
    @TableField(exist = false)
    private List<ComponentApproving> cApprovingList;
    @TableField(exist = false)
    private List<ComponentProductApproving> cpApprovingList;
    public Integer getId() {
        return id;
    }
@@ -202,4 +209,20 @@
    public void setType(Integer type) {
        this.type = type;
    }
    public List<ComponentApproving> getCApprovingList() {
        return cApprovingList;
    }
    public void setCApprovingList(List<ComponentApproving> cApprovingList) {
        this.cApprovingList = cApprovingList;
    }
    public List<ComponentProductApproving> getCpApprovingList() {
        return cpApprovingList;
    }
    public void setCpApprovingList(List<ComponentProductApproving> cpApprovingList) {
        this.cpApprovingList = cpApprovingList;
    }
}