1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 平台管道映射添加修改
- */
- public class A_M00007 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int ptid;//映射编号
- /**
- *映射编号
- */
- public void setPtid(int ptid) {
- this.ptid=ptid;
- }
- /**
- *映射编号
- */
- public int getPtid() {
- return this.ptid;
- }
- String ptcode;//平台code
- /**
- *平台code
- */
- public void setPtcode(String ptcode) {
- this.ptcode=ptcode;
- }
- /**
- *平台code
- */
- public String getPtcode() {
- return this.ptcode;
- }
- int pid;//管道id
- /**
- *管道id
- */
- public void setPid(int pid) {
- this.pid=pid;
- }
- /**
- *管道id
- */
- public int getPid() {
- return this.pid;
- }
- String pcode;//管道code
- /**
- *管道code
- */
- public void setPcode(String pcode) {
- this.pcode=pcode;
- }
- /**
- *管道code
- */
- public String getPcode() {
- return this.pcode;
- }
- String pname;//管道名称
- /**
- *管道名称
- */
- public void setPname(String pname) {
- this.pname=pname;
- }
- /**
- *管道名称
- */
- public String getPname() {
- return this.pname;
- }
- }
|