tachybase_todo/packages/plugins/@hera/plugin-rental/src/interfaces/contract.ts

9 lines
154 B
TypeScript
Raw Normal View History

2024-03-07 20:55:41 +08:00
import { RuleItem } from './rule';
export interface Contract {
tax_rate: number;
tax_included: any;
rule_items: RuleItem[];
calc_type: number;
}