复审意见展示

This commit is contained in:
zzk 2023-09-10 15:46:30 +08:00
parent 71e8087c24
commit ae73c5c5e0
3 changed files with 10 additions and 0 deletions

View File

@ -144,6 +144,7 @@
<attribute name="ZC_PROJECT_NUMBER" label="中车申请号" type="STRING" length="32"/>
<attribute name="ZC_CONTRACT_NUMBER" label="中车合同号" type="STRING" length="32"/>
<attribute name="CORPUS_SOURCE" label="资方名称" type="STRING" length="10"/>
<attribute name="VETO" label="拒单理由" type="STRING" length="10"/>
</attributes>
<manager>
<managerProperties>
@ -294,6 +295,7 @@
<attribute name="ZC_PROJECT_NUMBER" label="中车申请号" type="STRING" length="32"/>
<attribute name="ZC_CONTRACT_NUMBER" label="中车合同号" type="STRING" length="32"/>
<attribute name="CORPUS_SOURCE" label="资方名称" type="STRING" length="10"/>
<attribute name="VETO" label="拒单理由" type="STRING" length="10"/>
</attributes>
<manager>
<managerProperties>

View File

@ -269,4 +269,8 @@ public interface LB_PROJECT_INFO{
* 资方名称 STRING(10)<br>
*/
public static final String CORPUS_SOURCE = "CORPUS_SOURCE";
/**
* 拒单理由 STRING(10)<br>
*/
public static final String VETO = "VETO";
}

View File

@ -269,4 +269,8 @@ public interface LB_PROJECT_INFO_TEMP{
* 资方名称 STRING(10)<br>
*/
public static final String CORPUS_SOURCE = "CORPUS_SOURCE";
/**
* 拒单理由 STRING(10)<br>
*/
public static final String VETO = "VETO";
}