123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- import java.util.*;
- /**
- * 结果属性值查询->数据
- */
- public class D_ES0015_ROWS_RECODE extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String pcrId;//项目组件结果编号
- /**
- *项目组件结果编号
- */
- public void setPcrId(String pcrId) {
- this.pcrId=pcrId;
- }
- /**
- *项目组件结果编号
- */
- public String getPcrId() {
- return this.pcrId;
- }
- String pId;//项目ID
- /**
- *项目ID
- */
- public void setPId(String pId) {
- this.pId=pId;
- }
- /**
- *项目ID
- */
- public String getPId() {
- return this.pId;
- }
- String comId;//组件ID
- /**
- *组件ID
- */
- public void setComId(String comId) {
- this.comId=comId;
- }
- /**
- *组件ID
- */
- public String getComId() {
- return this.comId;
- }
- String pcId;//项目组件ID
- /**
- *项目组件ID
- */
- public void setPcId(String pcId) {
- this.pcId=pcId;
- }
- /**
- *项目组件ID
- */
- public String getPcId() {
- return this.pcId;
- }
- String jobId;//任务编号
- /**
- *任务编号
- */
- public void setJobId(String jobId) {
- this.jobId=jobId;
- }
- /**
- *任务编号
- */
- public String getJobId() {
- return this.jobId;
- }
- String keyEn;//键英文名
- /**
- *键英文名
- */
- public void setKeyEn(String keyEn) {
- this.keyEn=keyEn;
- }
- /**
- *键英文名
- */
- public String getKeyEn() {
- return this.keyEn;
- }
- String keyZh;//键中文名
- /**
- *键中文名
- */
- public void setKeyZh(String keyZh) {
- this.keyZh=keyZh;
- }
- /**
- *键中文名
- */
- public String getKeyZh() {
- return this.keyZh;
- }
- String uid;//用户编码
- /**
- *用户编码
- */
- public void setUid(String uid) {
- this.uid=uid;
- }
- /**
- *用户编码
- */
- public String getUid() {
- return this.uid;
- }
- String createTime;//创建时间
- /**
- *创建时间
- */
- public void setCreateTime(String createTime) {
- this.createTime=createTime;
- }
- /**
- *创建时间
- */
- public String getCreateTime() {
- return this.createTime;
- }
- String updateTime;//更新时间
- /**
- *更新时间
- */
- public void setUpdateTime(String updateTime) {
- this.updateTime=updateTime;
- }
- /**
- *更新时间
- */
- public String getUpdateTime() {
- return this.updateTime;
- }
- String remark;//描述
- /**
- *描述
- */
- public void setRemark(String remark) {
- this.remark=remark;
- }
- /**
- *描述
- */
- public String getRemark() {
- return this.remark;
- }
- List <D_ES0015_ROWS_COMS_RECODE> coms;//数据
- /**
- *数据
- */
- public void setComs(List <D_ES0015_ROWS_COMS_RECODE> coms) {
- this.coms=coms;
- }
- /**
- *数据
- */
- public List <D_ES0015_ROWS_COMS_RECODE> getComs() {
- return this.coms;
- }
- }
|