cf1a36057d2c03edafb0535ccd368e0379529faf.svn-base 377 B

123456789101112131415161718192021222324
  1. package cn.com.goldenwater.dcproj.dto;
  2. public class CateTotal {
  3. private int total;
  4. private String cate;
  5. public int getTotal() {
  6. return total;
  7. }
  8. public void setTotal(int total) {
  9. this.total = total;
  10. }
  11. public String getCate() {
  12. return cate;
  13. }
  14. public void setCate(String cate) {
  15. this.cate = cate;
  16. }
  17. }