AccountApplyDemoService.java 350 B

123456789101112131415
  1. package com.crm.custom.service;
  2. import com.crm.rely.backend.model.entity.account.apply.demo.AccountApplyDemoAddEntity;
  3. public interface AccountApplyDemoService {
  4. /**
  5. * 新增创建账户信息
  6. *
  7. * @param entity
  8. * @throws Exception
  9. */
  10. void addAccountApplyDemo(AccountApplyDemoAddEntity entity) throws Exception;
  11. }