1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 项目克隆
- */
- public class A_ES0028 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String pid;//项目编码
- /**
- *项目编码
- */
- public void setPid(String pid) {
- this.pid=pid;
- }
- /**
- *项目编码
- */
- public String getPid() {
- return this.pid;
- }
- String uid;//用户编码
- /**
- *用户编码
- */
- public void setUid(String uid) {
- this.uid=uid;
- }
- /**
- *用户编码
- */
- public String getUid() {
- return this.uid;
- }
- }
|