tachybase_todo/packages/plugins/@hera/plugin-rental/src/interfaces/contract.ts
2024-03-11 19:25:05 +08:00

9 lines
154 B
TypeScript

import { RuleItem } from './rule';
export interface Contract {
tax_rate: number;
tax_included: any;
rule_items: RuleItem[];
calc_type: number;
}