package com.loan.system.service; import com.loan.system.domain.entity.*; import java.util.List; public interface DictionaryService { List getAllDictAttributes(Boolean isDelete); List getAllDictTypes(Boolean isDelete); List getAllDictChannels(Boolean isDelete); List getAllLocations(Boolean isDelete); }