import { Http,Util } from '@/utils';
import CountMoneyLogicBase from './count-money-logic-base';

/**
 * 统计金额
 *
 * @export
 * @class CountMoneyLogic
 */
export default class CountMoneyLogic extends CountMoneyLogicBase{

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

}