17 changed files with 421 additions and 70 deletions
@ -0,0 +1,29 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2022/3/15 17:11 |
||||
|
*/ |
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public class MemoConcernFormDTO extends PageFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -2355555089163762829L; |
||||
|
private String userId; |
||||
|
private String id; |
||||
|
private String readFlag = "0"; |
||||
|
private String content; |
||||
|
private String concernType; |
||||
|
private String resiName; |
||||
|
private String status; |
||||
|
private String startTime; |
||||
|
private String endTime; |
||||
|
private String scheduledStartTime; |
||||
|
private String scheduledEndTime; |
||||
|
} |
@ -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; |
||||
|
|
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package com.epmet.constant; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2022/3/15 16:56 |
||||
|
*/ |
||||
|
public interface MemoConstant { |
||||
|
String WORK_DIARY = "work_diary"; |
||||
|
String CONCERN = "concern"; |
||||
|
String DIFFICULTY = "difficulty"; |
||||
|
} |
Loading…
Reference in new issue