admin
2021-01-08 7e389247b3b2877c12f1eaae6e33c9c33e91d2dd
service-daylucky/src/main/java/com/ks/daylucky/pojo/VO/UserMsgContentVO.java
@@ -1,14 +1,23 @@
package com.ks.daylucky.pojo.VO;
import com.ks.daylucky.pojo.VO.common.JumpDetailVO;
public class UserMsgContentVO {
    private String title;
    private String content;
    private JumpDetailVO jump;
    public UserMsgContentVO(String title, String content) {
        this.title = title;
        this.content = content;
    }
    public UserMsgContentVO(String title, String content, JumpDetailVO jump) {
        this.title = title;
        this.content = content;
        this.jump = jump;
    }
    public String getTitle() {
        return title;
    }