6 changed files with 105 additions and 12 deletions
@ -0,0 +1,47 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 难点堵点列表 |
|||
* @Author sun |
|||
*/ |
|||
@NoArgsConstructor |
|||
@Data |
|||
public class MemoDifficultyFormDTO extends PageFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 3101320969471756516L; |
|||
|
|||
/** |
|||
* 内容摘要 |
|||
*/ |
|||
private String content; |
|||
/** |
|||
* 起始预计处理时间 |
|||
*/ |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
private String scheduledStartTime; |
|||
/** |
|||
* 终止预计处理时间 |
|||
*/ |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
private String scheduledEndTime; |
|||
/** |
|||
* 起始创建时间 |
|||
*/ |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
private String startTime; |
|||
/** |
|||
* 终止创建时间 |
|||
*/ |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
private String endTime; |
|||
|
|||
//token中用户Id
|
|||
private String userId; |
|||
|
|||
} |
Loading…
Reference in new issue