1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**
- *
- */
- package com.sinosoft.am.resource.ups_generator.vo;
- /**
- * @author 蒋云涛
- *
- */
- public class UPSGeneratorNum{
-
- private int content_min;
- private int content_mid;
- private int content_max;
- private double num;
- public double getNum() {
- return num;
- }
- public void setNum(double num) {
- this.num = num;
- }
- public int getContent_min() {
- return content_min;
- }
- public void setContent_min(int content_min) {
- this.content_min = content_min;
- }
- public int getContent_mid() {
- return content_mid;
- }
- public void setContent_mid(int content_mid) {
- this.content_mid = content_mid;
- }
- public int getContent_max() {
- return content_max;
- }
- public void setContent_max(int content_max) {
- this.content_max = content_max;
- }
-
- }
|