This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
liushuai
/
hz-project-management
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
35
Wiki
Activity
Browse Source
增加抽象消息类
tags/24080901
WendyYang
1 year ago
parent
f7000239b0
commit
bc8f9106a4
3 changed files
with
30 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-0
pmapi/src/main/java/com/ningdatech/pmapi/sys/model/dto/AbstractMsgExtraDTO.java
+15
-0
pmapi/src/main/java/com/ningdatech/pmapi/sys/model/dto/MeetingReviewMsgExtraDTO.java
+2
-0
pmapi/src/main/java/com/ningdatech/pmapi/sys/model/entity/Notify.java
+ 13
- 0
pmapi/src/main/java/com/ningdatech/pmapi/sys/model/dto/AbstractMsgExtraDTO.java
View File
@@ -0,0 +1,13 @@
package com.ningdatech.pmapi.sys.model.dto;
/**
* <p>
* AbstractExtraDTO
* </p>
*
* @author WendyYang
* @since 2023/4/12
**/
public abstract class AbstractMsgExtraDTO {
}
+ 15
- 0
pmapi/src/main/java/com/ningdatech/pmapi/sys/model/dto/MeetingReviewMsgExtraDTO.java
View File
@@ -0,0 +1,15 @@
package com.ningdatech.pmapi.sys.model.dto;
/**
* <p>
* MeetingReviewMsgExtraDTO
* </p>
*
* @author WendyYang
* @since 2023/4/12
**/
public class MeetingReviewMsgExtraDTO extends AbstractMsgExtraDTO {
private Long meetingId;
}
+ 2
- 0
pmapi/src/main/java/com/ningdatech/pmapi/sys/model/entity/Notify.java
View File
@@ -51,4 +51,6 @@ public class Notify implements Serializable {
@ApiModelProperty("创建时间")
@ApiModelProperty("创建时间")
private LocalDateTime createTime;
private LocalDateTime createTime;
private String extraInfo;
}
}
Write
Preview
Loading…
Cancel
Save