|
|
@@ -227,18 +227,18 @@ export interface IBillIndexGlj {
|
|
|
name: string;
|
|
|
specs: string;
|
|
|
unit: string;
|
|
|
- quantity: number;
|
|
|
- marketPrice: number;
|
|
|
- basePrice: number;
|
|
|
- rationQuantity: number;
|
|
|
+ quantity: string;
|
|
|
+ marketPrice: string;
|
|
|
+ basePrice: string;
|
|
|
+ rationQuantity: string;
|
|
|
}
|
|
|
|
|
|
export interface IBillIndexRation {
|
|
|
code: string;
|
|
|
name: string;
|
|
|
unit: string;
|
|
|
- quantity: number;
|
|
|
- unitPrice: number;
|
|
|
+ quantity: string;
|
|
|
+ unitPrice: string;
|
|
|
rationGljList: IBillIndexGlj[];
|
|
|
}
|
|
|
|
|
|
@@ -251,8 +251,8 @@ export interface IBillIndex {
|
|
|
code: string;
|
|
|
name: string;
|
|
|
unit: string;
|
|
|
- quantity: number;
|
|
|
+ quantity: string;
|
|
|
itemCharacter: string;
|
|
|
- unitPrice: number; // 综合单价
|
|
|
+ unitPrice: string; // 综合单价
|
|
|
rations: IBillIndexRation[];
|
|
|
}
|