12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * python查询
- */
- public class D_MDO0036 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 pythonid;//PythonID
- /**
- *PythonID
- */
- public void setPythonid(String pythonid) {
- this.pythonid=pythonid;
- }
- /**
- *PythonID
- */
- public String getPythonid() {
- return this.pythonid;
- }
- String ptython;//代码
- /**
- *代码
- */
- public void setPtython(String ptython) {
- this.ptython=ptython;
- }
- /**
- *代码
- */
- public String getPtython() {
- return this.ptython;
- }
- String wid;//流程id
- /**
- *流程id
- */
- public void setWid(String wid) {
- this.wid=wid;
- }
- /**
- *流程id
- */
- public String getWid() {
- return this.wid;
- }
- }
|