| 12345678910111213141516 |
- import { gljTypes } from './constant';
- import { getComponentTypes, getCustomerCoe } from './glj';
- export class BaseOverwrite {
- // 可用的人材机类型(目前只有人材机库有限制)
- gljTypes = gljTypes;
- // 根据人材机类型,获取可含有的组成物类型,空数组即为该人材机不可含有组成物
- getComponentTypes = getComponentTypes;
- // 获取自定义系数
- getCustomerCoe = getCustomerCoe;
- // 默认取市场价费
- fromMarket = true;
- }
|