songhuangfeng123
2022-08-05 a7d59de46316f575c9c67d707395ca86ac02c287
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/model/dto/resp/EmergencySuppliesDetailRespDTO.java
@@ -4,11 +4,35 @@
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gkhy.safePlatform.emergency.entity.EmergencySuppliesMaintainInfoDetailDO;
import com.gkhy.safePlatform.emergency.model.dto.req.EmergencySuppliesInspectReqDTO;
import com.gkhy.safePlatform.emergency.model.dto.req.EmergencySuppliesMaintainReqDTO;
import java.util.Date;
import java.util.List;
public class EmergencySuppliesDetailRespDTO {
    private List<EmergencySuppliesMaintainDetailRespDTO> maintainList;
    private List<EmergencySuppliesInspectDetailRespDTO> inspectList;
    public List<EmergencySuppliesMaintainDetailRespDTO> getMaintainList() {
        return maintainList;
    }
    public void setMaintainList(List<EmergencySuppliesMaintainDetailRespDTO> maintainList) {
        this.maintainList = maintainList;
    }
    public List<EmergencySuppliesInspectDetailRespDTO> getInspectList() {
        return inspectList;
    }
    public void setInspectList(List<EmergencySuppliesInspectDetailRespDTO> inspectList) {
        this.inspectList = inspectList;
    }
    private String principalUserName;
    public String getPrincipalUserName() {