4f37ee030fdcc0fd38556b29b5d123cd868f9921.svn-base 749 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. *
  3. */
  4. package com.sinosoft.am.resource.ups_generator.vo;
  5. /**
  6. * @author 蒋云涛
  7. *
  8. */
  9. public class UPSGeneratorNum{
  10. private int content_min;
  11. private int content_mid;
  12. private int content_max;
  13. private double num;
  14. public double getNum() {
  15. return num;
  16. }
  17. public void setNum(double num) {
  18. this.num = num;
  19. }
  20. public int getContent_min() {
  21. return content_min;
  22. }
  23. public void setContent_min(int content_min) {
  24. this.content_min = content_min;
  25. }
  26. public int getContent_mid() {
  27. return content_mid;
  28. }
  29. public void setContent_mid(int content_mid) {
  30. this.content_mid = content_mid;
  31. }
  32. public int getContent_max() {
  33. return content_max;
  34. }
  35. public void setContent_max(int content_max) {
  36. this.content_max = content_max;
  37. }
  38. }