123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package com.miniframe.model.mdo;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import javax.persistence.*;
- @Table(name = "mdo_pro_python")
- public class MdoProPython extends MiniserviceBaseModel implements Serializable {
- /**
- * python ID
- */
- @Id
- private String id;
- /**
- * 项目ID
- */
- private String pid;
- private String ptython;
- /**
- * 流程id
- */
- private String wid;
- private static final long serialVersionUID = 1L;
- /**
- * 获取python ID
- *
- * @return id - python ID
- */
- public String getId() {
- return id;
- }
- /**
- * 设置python ID
- *
- * @param id python ID
- */
- public void setId(String id) {
- this.id = id == null ? null : id.trim();
- }
- /**
- * 获取项目ID
- *
- * @return pid - 项目ID
- */
- public String getPid() {
- return pid;
- }
- /**
- * 设置项目ID
- *
- * @param pid 项目ID
- */
- public void setPid(String pid) {
- this.pid = pid == null ? null : pid.trim();
- }
- /**
- * @return ptython
- */
- public String getPtython() {
- return ptython;
- }
- /**
- * @param ptython
- */
- public void setPtython(String ptython) {
- this.ptython = ptython == null ? null : ptython.trim();
- }
- /**
- * 获取流程id
- *
- * @return wid - 流程id
- */
- public String getWid() {
- return wid;
- }
- /**
- * 设置流程id
- *
- * @param wid 流程id
- */
- public void setWid(String wid) {
- this.wid = wid == null ? null : wid.trim();
- }
- }
|