base.ts 490 B

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