Skip to content

Instantly share code, notes, and snippets.

@yongboy
Created January 5, 2011 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yongboy/766120 to your computer and use it in GitHub Desktop.
Save yongboy/766120 to your computer and use it in GitHub Desktop.
just for demo...
public interface ICommentService {
void pagingComments(Paging<Comment> pager, YpwapTypes objType,
Object objUuid);
Comment get(Integer id);
void update(Comment comment);
void save(Comment comment);
void delete(Integer id);
void delete(Comment comment);
void pagingComments(Paging<Comment> pager, Scenery scenery);
void saveSceneryComment(Integer id, String content, String reffer,
String hostIp);
void delMore(String ids);
Integer getTodayCommentsNum(String type);
Integer getThisWeekCommentsNum(String type);
void initOtherInfo(List<Comment> list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment