@@ -62,4 +62,30 @@ public class D_ES0009 extends BaseMapModel implements Serializable {
public String getName() {
return this.name;
}
+ int ser;//序号
+ /**
+ *序号
+ */
+ public void setSer(int ser) {
+ this.ser=ser;
+ }
+ public int getSer() {
+ return this.ser;
+ String idCode;//组件id编码
+ *组件id编码
+ public void setIdCode(String idCode) {
+ this.idCode=idCode;
+ public String getIdCode() {
+ return this.idCode;
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE form-validation PUBLIC "-//Apache Software Foundation//DTD Commons Validator Rules Configuration 1.1//EN" "http://jakarta.apache.org/commons/dtds/validator_1_1.dtd">
+<!-- 项目组件属性查询Form配置文件系统生成请勿修改,否则重新生成将覆盖 -->
+<form-validation>
+<formset>
+<form name="d_es0009Form">
+<field property="ser" depends="required">
+ <arg0 key="d_es0009.ser"/>
+</field>
+<field property="idCode" depends="required">
+ <arg0 key="d_es0009.idCode"/>
+</form>
+</formset>
+</form-validation>
@@ -1,4 +1,6 @@
d_es0009.pcId = \u9879\u76EE\u7EC4\u4EF6Id
d_es0009.comId = \u7EC4\u4EF6ID
d_es0009.name = \u7EC4\u4EF6name
+d_es0009.ser = \u5E8F\u53F7
+d_es0009.idCode = \u7EC4\u4EF6id\u7F16\u7801
d_es0009Form = true
@@ -53,6 +53,8 @@ public class ES0009Service extends ES0009BaseModel implements ExecProcessFlow {
this.getD_es0009().setComId(c.getComId());
this.getD_es0009().setName(c.getName());
this.getD_es0009().setPcId(pcId);
+ this.getD_es0009().setSer(pc.getSer());
+ this.getD_es0009().setIdCode(pc.getIdCode());
this.getD_es0009().setRows(rows);
@@ -11,4 +11,6 @@
1.9,dataType,值数据类型,int,,,,,,,,,,,
2,pcId,项目组件Id,string,,,,,,,,,,,
3,comId,组件ID,string,,,,,,,,,,,
-4,name,组件name,string,,,,,,,,,,,
+4,name,组件name,string,,,,,,,,,,,
+5,ser,序号,int,,,是,,,,,,,,
+6,idCode,组件id编码,string,,,是,,,,,,,,