whycxzp
2023-05-18 5dbdab581d8654f37acb964d6e31e16eeb0be347
src/main/java/com/whyc/pojo/WorkflowMain.java
@@ -80,7 +80,7 @@
    private Integer type;
    @TableField(exist = false)
    private BattDischargePlanTemp temp;
    private List<BattDischargePlanTemp> tempList;
    public WorkflowMain(Integer id, Integer status,String endReason,Date endTime) {
        this.id = id;
@@ -261,11 +261,11 @@
        this.type = type;
    }
    public BattDischargePlanTemp getTemp() {
        return temp;
    public List<BattDischargePlanTemp> getTempList() {
        return tempList;
    }
    public void setTemp(BattDischargePlanTemp temp) {
        this.temp = temp;
    public void setTempList(List<BattDischargePlanTemp> tempList) {
        this.tempList = tempList;
    }
}