bean.ts 340 Bytes
Newer Older
姜雷 committed
1 2 3 4 5 6 7 8 9 10 11
import { CustomerBeanAccountVo, AccountParams } from './baseClass';
import { customerFetch, ResponseDataEntity } from '.';

export const fetchBeanCount = (
  data: AccountParams,
): Promise<ResponseDataEntity<CustomerBeanAccountVo[]>> =>
  customerFetch({
    url: '/customerAccount/queryAccount',
    method: 'POST',
    data: data,
  });