123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * cst参数添加修改
- */
- public class A_MDO0041 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String pid;//项目ID
- /**
- *项目ID
- */
- public void setPid(String pid) {
- this.pid=pid;
- }
- /**
- *项目ID
- */
- public String getPid() {
- return this.pid;
- }
- String cstn;//cst阶数
- /**
- *cst阶数
- */
- public void setCstn(String cstn) {
- this.cstn=cstn;
- }
- /**
- *cst阶数
- */
- public String getCstn() {
- return this.cstn;
- }
- String lowern1;//下表面类函数参数N1
- /**
- *下表面类函数参数N1
- */
- public void setLowern1(String lowern1) {
- this.lowern1=lowern1;
- }
- /**
- *下表面类函数参数N1
- */
- public String getLowern1() {
- return this.lowern1;
- }
- String lowern2;//下表面类函数参数N2
- /**
- *下表面类函数参数N2
- */
- public void setLowern2(String lowern2) {
- this.lowern2=lowern2;
- }
- /**
- *下表面类函数参数N2
- */
- public String getLowern2() {
- return this.lowern2;
- }
- String lowerb;//下表面CST参数
- /**
- *下表面CST参数
- */
- public void setLowerb(String lowerb) {
- this.lowerb=lowerb;
- }
- /**
- *下表面CST参数
- */
- public String getLowerb() {
- return this.lowerb;
- }
- String uppern1;//项目ID
- /**
- *项目ID
- */
- public void setUppern1(String uppern1) {
- this.uppern1=uppern1;
- }
- /**
- *项目ID
- */
- public String getUppern1() {
- return this.uppern1;
- }
- String uppern2;//项目ID
- /**
- *项目ID
- */
- public void setUppern2(String uppern2) {
- this.uppern2=uppern2;
- }
- /**
- *项目ID
- */
- public String getUppern2() {
- return this.uppern2;
- }
- String upperb;//项目ID
- /**
- *项目ID
- */
- public void setUpperb(String upperb) {
- this.upperb=upperb;
- }
- /**
- *项目ID
- */
- public String getUpperb() {
- return this.upperb;
- }
- int checked;//是否选中1-选中 0-未选中
- /**
- *是否选中1-选中 0-未选中
- */
- public void setChecked(int checked) {
- this.checked=checked;
- }
- /**
- *是否选中1-选中 0-未选中
- */
- public int getChecked() {
- return this.checked;
- }
- }
|