Files
admin-vben5/apps/web-antd/src/api/property/costManagement/costItemSetting/model.d.ts

220 lines
2.4 KiB
TypeScript
Raw Normal View History

2025-07-17 14:21:32 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface CostItemSettingVO {
/**
*
*/
id: string | number;
/**
*
*/
costType: string;
/**
*
*/
chargeItem: string;
/**
*
*/
costMark: string;
/**
*
*/
paymentType: string;
/**
*
*/
chargeCycle: number;
/**
*
*/
isMobilePay: string;
/**
*
*/
roundingMode: string;
/**
*
*/
currencyDecimals: string;
/**
*
*/
state: string;
/**
*
*/
formula: string;
/**
*
*/
unitPrice: number;
/**
*
*/
surcharge: number;
/**
*
*/
searchValue: string;
}
export interface CostItemSettingForm extends BaseEntity {
/**
*
*/
id?: string | number;
/**
*
*/
costType?: string;
/**
*
*/
chargeItem?: string;
/**
*
*/
costMark?: string;
/**
*
*/
paymentType?: string;
/**
*
*/
chargeCycle?: number;
/**
*
*/
isMobilePay?: string;
/**
*
*/
roundingMode?: string;
/**
*
*/
currencyDecimals?: string;
/**
*
*/
state?: string;
/**
*
*/
formula?: string;
/**
*
*/
unitPrice?: number;
/**
*
*/
surcharge?: number;
/**
*
*/
searchValue?: string;
}
export interface CostItemSettingQuery extends PageQuery {
/**
*
*/
costType?: string;
/**
*
*/
chargeItem?: string;
/**
*
*/
costMark?: string;
/**
*
*/
paymentType?: string;
/**
*
*/
chargeCycle?: number;
/**
*
*/
isMobilePay?: string;
/**
*
*/
roundingMode?: string;
/**
*
*/
currencyDecimals?: string;
/**
*
*/
state?: string;
/**
*
*/
formula?: string;
/**
*
*/
unitPrice?: number;
/**
*
*/
surcharge?: number;
/**
*
*/
searchValue?: string;
/**
*
*/
params?: any;
}