DictionaryService.java 386 B

12345678910111213141516
  1. package com.loan.system.service;
  2. import com.loan.system.domain.entity.*;
  3. import java.util.List;
  4. public interface DictionaryService {
  5. List<DictAttribute> getAllDictAttributes(Boolean isDelete);
  6. List<DictBusinessType> getAllDictTypes(Boolean isDelete);
  7. List<DictChannel> getAllDictChannels(Boolean isDelete);
  8. List<DictLocation> getAllLocations(Boolean isDelete);
  9. }