CounterBean.java
上传用户:cdpainuo
上传日期:2022-07-12
资源大小:5257k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.appspot.cindyblog.pojo;
  2. import javax.jdo.annotations.IdGeneratorStrategy;
  3. import javax.jdo.annotations.Persistent;
  4. import javax.jdo.annotations.PrimaryKey;
  5. public class CounterBean {
  6. @PrimaryKey
  7. @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
  8. private Long id;
  9. @Persistent
  10. private String name;
  11. @Persistent
  12. private int count;
  13. public CounterBean() {
  14. super();
  15. }
  16. public CounterBean(String name, int count) {
  17. super();
  18. this.name = name;
  19. this.count = count;
  20. }
  21. public Long getId() {
  22. return id;
  23. }
  24. public void setId(Long id) {
  25. this.id = id;
  26. }
  27. public String getName() {
  28. return name;
  29. }
  30. public void setName(String name) {
  31. this.name = name;
  32. }
  33. public int getCount() {
  34. return count;
  35. }
  36. public void setCount(int count) {
  37. this.count = count;
  38. }
  39. }