123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 管道数据添加修改
- */
- public class A_D10002 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int pid;//管道编号
- /**
- *管道编号
- */
- public void setPid(int pid) {
- this.pid=pid;
- }
- /**
- *管道编号
- */
- public int getPid() {
- return this.pid;
- }
- String name;//名称
- /**
- *名称
- */
- public void setName(String name) {
- this.name=name;
- }
- /**
- *名称
- */
- public String getName() {
- return this.name;
- }
- int snId;//开始节点
- /**
- *开始节点
- */
- public void setSnId(int snId) {
- this.snId=snId;
- }
- /**
- *开始节点
- */
- public int getSnId() {
- return this.snId;
- }
- int enId;//结束节点
- /**
- *结束节点
- */
- public void setEnId(int enId) {
- this.enId=enId;
- }
- /**
- *结束节点
- */
- public int getEnId() {
- return this.enId;
- }
- String roughCoe;//粗糙系数
- /**
- *粗糙系数
- */
- public void setRoughCoe(String roughCoe) {
- this.roughCoe=roughCoe;
- }
- /**
- *粗糙系数
- */
- public String getRoughCoe() {
- return this.roughCoe;
- }
- String sectionType;//截面类型
- /**
- *截面类型
- */
- public void setSectionType(String sectionType) {
- this.sectionType=sectionType;
- }
- /**
- *截面类型
- */
- public String getSectionType() {
- return this.sectionType;
- }
- String sectionPara1;//截面参数1
- /**
- *截面参数1
- */
- public void setSectionPara1(String sectionPara1) {
- this.sectionPara1=sectionPara1;
- }
- /**
- *截面参数1
- */
- public String getSectionPara1() {
- return this.sectionPara1;
- }
- String sectionPara2;//截面参数2
- /**
- *截面参数2
- */
- public void setSectionPara2(String sectionPara2) {
- this.sectionPara2=sectionPara2;
- }
- /**
- *截面参数2
- */
- public String getSectionPara2() {
- return this.sectionPara2;
- }
- String sectionPara3;//截面参数3
- /**
- *截面参数3
- */
- public void setSectionPara3(String sectionPara3) {
- this.sectionPara3=sectionPara3;
- }
- /**
- *截面参数3
- */
- public String getSectionPara3() {
- return this.sectionPara3;
- }
- String sectionPara4;//截面参数4
- /**
- *截面参数4
- */
- public void setSectionPara4(String sectionPara4) {
- this.sectionPara4=sectionPara4;
- }
- /**
- *截面参数4
- */
- public String getSectionPara4() {
- return this.sectionPara4;
- }
- String sectionPara5;//截面参数5
- /**
- *截面参数5
- */
- public void setSectionPara5(String sectionPara5) {
- this.sectionPara5=sectionPara5;
- }
- /**
- *截面参数5
- */
- public String getSectionPara5() {
- return this.sectionPara5;
- }
- String code;//编号
- /**
- *编号
- */
- public void setCode(String code) {
- this.code=code;
- }
- /**
- *编号
- */
- public String getCode() {
- return this.code;
- }
- }
|