26 changed files with 179 additions and 28 deletions
@ -0,0 +1,25 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/3/21 15:48 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class ProjectAuditResetResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -4523314881244005376L; |
|||
|
|||
private Boolean projectStatus; |
|||
|
|||
private Boolean resiEventStatus; |
|||
|
|||
public ProjectAuditResetResultDTO() { |
|||
this.projectStatus = false; |
|||
this.resiEventStatus = false; |
|||
} |
|||
} |
Loading…
Reference in new issue