纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
301 B

3 years ago
  1. using NFine.Data;
  2. using NFine.Domain.Entity.SystemManage;
  3. using System.Collections.Generic;
  4. namespace NFine.Domain.IRepository.SystemManage
  5. {
  6. public interface IItemsDetailRepository : IRepositoryBase<ItemsDetailEntity>
  7. {
  8. List<ItemsDetailEntity> GetItemList(string enCode);
  9. }
  10. }