import { Http,Util } from '@/utils'; import GetUnitAndPriceLogicBase from './get-unit-and-price-logic-base'; /** * 通过商品ID获取单价及单位 * * @export * @class GetUnitAndPriceLogic */ export default class GetUnitAndPriceLogic extends GetUnitAndPriceLogicBase{ /** * Creates an instance of GetUnitAndPriceLogic * * @param {*} [opts={}] * @memberof GetUnitAndPriceLogic */ constructor(opts: any = {}) { super(opts); } }