123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 节点数据添加修改
- */
- public class A_D10000 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int nid;//节点编号
- /**
- *节点编号
- */
- public void setNid(int nid) {
- this.nid=nid;
- }
- /**
- *节点编号
- */
- public int getNid() {
- return this.nid;
- }
- String name;//名称
- /**
- *名称
- */
- public void setName(String name) {
- this.name=name;
- }
- /**
- *名称
- */
- public String getName() {
- return this.name;
- }
- String x;//x
- /**
- *x
- */
- public void setX(String x) {
- this.x=x;
- }
- /**
- *x
- */
- public String getX() {
- return this.x;
- }
- String y;//y
- /**
- *y
- */
- public void setY(String y) {
- this.y=y;
- }
- /**
- *y
- */
- public String getY() {
- return this.y;
- }
- String z;//z
- /**
- *z
- */
- public void setZ(String z) {
- this.z=z;
- }
- /**
- *z
- */
- public String getZ() {
- return this.z;
- }
- String desc;//描述
- /**
- *描述
- */
- public void setDesc(String desc) {
- this.desc=desc;
- }
- /**
- *描述
- */
- public String getDesc() {
- return this.desc;
- }
- String ntype;//类型默认值
- /**
- *类型默认值
- */
- public void setNtype(String ntype) {
- this.ntype=ntype;
- }
- /**
- *类型默认值
- */
- public String getNtype() {
- return this.ntype;
- }
- String code;//编号
- /**
- *编号
- */
- public void setCode(String code) {
- this.code=code;
- }
- /**
- *编号
- */
- public String getCode() {
- return this.code;
- }
- }
|