userblog.java
来自「cwbbs 云网论坛源码」· Java 代码 · 共 33 行
JAVA
33 行
package com.redmoon.blog;import com.redmoon.forum.MsgDb;import java.util.Vector;public class UserBlog { public UserBlog(long blogId) { this.blogId = blogId; } public int[] getBlogDayCount(int year, int month) { MsgDb md = new MsgDb(); return md.getBlogMsgDayCount(blogId, year, month); } public void setBlogId(long blogId) { this.blogId = blogId; } public long getBlogId() { return blogId; } public Vector getBlogDayList(int year, int month, int day) { MsgDb md = new MsgDb(); return md.getBlogDayList(blogId, year, month, day); } private long blogId;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?