Your Name
2023-09-04 76eb8f1ab4c6382373653ec51c51a622ee6d8f18
java110-bean/src/main/java/com/java110/dto/purchase/AllocationStorehouseDto.java
@@ -1,9 +1,11 @@
package com.java110.dto.purchase;
import com.java110.dto.PageDto;
import com.java110.dto.resource.ResourceStoreTimesDto;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
 * @ClassName FloorDto
@@ -66,6 +68,9 @@
    private String isFixed;
    private String isFixedName;
    private String timesId;
    private String communityId;
    private List<ResourceStoreTimesDto> times;
    public String getAsId() {
        return asId;
@@ -412,4 +417,20 @@
    public void setTimesId(String timesId) {
        this.timesId = timesId;
    }
    public List<ResourceStoreTimesDto> getTimes() {
        return times;
    }
    public void setTimes(List<ResourceStoreTimesDto> times) {
        this.times = times;
    }
    public String getCommunityId() {
        return communityId;
    }
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
}