get-unit-and-price-logic.ts 555 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import { Http,Util } from '@/utils';
import GetUnitAndPriceLogicBase from './get-unit-and-price-logic-base';

/**
 * 通过商品ID获取单价及单位
 * 基于 APP/src/service/%DE_PKGPATH%/%APP_DELOGIC%-logic.ts.ftl 生成
 * @export
 * @class GetUnitAndPriceLogic
 */
export default class GetUnitAndPriceLogic extends GetUnitAndPriceLogicBase{

    /**
     * Creates an instance of  GetUnitAndPriceLogic
     * 
     * @param {*} [opts={}]
     * @memberof  GetUnitAndPriceLogic
     */
    constructor(opts: any = {}) {
        super(opts);
    }

}