添加租赁物提前结清标识

This commit is contained in:
zzk 2022-04-08 13:41:49 +08:00
parent 27f1de5fa0
commit 3b93240bf9
5 changed files with 17 additions and 0 deletions

View File

@ -4545,6 +4545,7 @@
<attribute name="head_name" label="头车名称" type="STRING" length="100"/>
<attribute name="is_tail" label="头车字段(是否有挂车)" type="STRING" length="2"/>
<attribute name="uu_id" label="标识" type="STRING" length="32"/>
<attribute name="TERMINATE_TYPE" label="标识租赁物是否结清" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>
@ -4667,6 +4668,7 @@
<attribute name="head_name" label="头车名称" type="STRING" length="100"/>
<attribute name="is_tail" label="头车字段(是否有挂车)" type="STRING" length="2"/>
<attribute name="uu_id" label="标识" type="STRING" length="32"/>
<attribute name="TERMINATE_TYPE" label="标识租赁物是否结清" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>

View File

@ -2092,6 +2092,7 @@
<attribute name="head_name" label="头车名称" type="STRING" length="100"/>
<attribute name="is_tail" label="头车字段(是否有挂车)" type="STRING" length="2"/>
<attribute name="uu_id" label="标识" type="STRING" length="32"/>
<attribute name="TERMINATE_TYPE" label="标识租赁物是否结清" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>

View File

@ -457,4 +457,10 @@ public interface LB_EQUIPMENT_CAR_TEMP{
* ±êÊ STRING(32)<br>
*/
public static final String uu_id = "uu_id";
/**
* 标识租赁物是否结清 STRING(32)<br>
*/
public static final String TERMINATE_TYPE = "TERMINATE_TYPE";
}

View File

@ -325,4 +325,8 @@ public interface LB_EQUIPMENT_CAR{
* ±êÊ STRING(32)<br>
*/
public static final String uu_id = "uu_id";
/**
* 标识租赁物是否结清 STRING(32)<br>
*/
public static final String TERMINATE_TYPE = "TERMINATE_TYPE";
}

View File

@ -321,4 +321,8 @@ public interface LB_EQUIPMENT_CAR_HIS{
* ±êÊ STRING(32)<br>
*/
public static final String uu_id = "uu_id";
/**
* 标识租赁物是否结清 STRING(32)<br>
*/
public static final String TERMINATE_TYPE = "TERMINATE_TYPE";
}