admin
2021-02-06 6c09cbd70388ae53ec593de253f69cfa1a3eeda7
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ks.daylucky.pojo.VO;
 
public class UserConfigVO {
    private int msgCount;
 
    public int getMsgCount() {
        return msgCount;
    }
 
    public void setMsgCount(int msgCount) {
        this.msgCount = msgCount;
    }
}