12345678910111213141516171819202122232425 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 项目添加组件
- */
- public class D_ES0004 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String pcId;//项目组件Id
- /**
- *项目组件Id
- */
- public void setPcId(String pcId) {
- this.pcId=pcId;
- }
- /**
- *项目组件Id
- */
- public String getPcId() {
- return this.pcId;
- }
- }
|