123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 流程添加修改
- */
- public class A_MDO0058 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String wid;//流程ID
- /**
- *流程ID
- */
- public void setWid(String wid) {
- this.wid=wid;
- }
- /**
- *流程ID
- */
- public String getWid() {
- return this.wid;
- }
- String uid;//UID
- /**
- *UID
- */
- public void setUid(String uid) {
- this.uid=uid;
- }
- /**
- *UID
- */
- public String getUid() {
- return this.uid;
- }
- String pid;//pid
- /**
- *pid
- */
- public void setPid(String pid) {
- this.pid=pid;
- }
- /**
- *pid
- */
- public String getPid() {
- return this.pid;
- }
- String type;//process-逻辑线 data-数据线 com-组件
- /**
- *process-逻辑线 data-数据线 com-组件
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *process-逻辑线 data-数据线 com-组件
- */
- public String getType() {
- return this.type;
- }
- String fromuid;//线段来源UID
- /**
- *线段来源UID
- */
- public void setFromuid(String fromuid) {
- this.fromuid=fromuid;
- }
- /**
- *线段来源UID
- */
- public String getFromuid() {
- return this.fromuid;
- }
- String touid;//线段目标UID
- /**
- *线段目标UID
- */
- public void setTouid(String touid) {
- this.touid=touid;
- }
- /**
- *线段目标UID
- */
- public String getTouid() {
- return this.touid;
- }
- }
|