纽威
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
309 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 IModuleButtonRepository : IRepositoryBase<ModuleButtonEntity>
  7. {
  8. void SubmitCloneButton(List<ModuleButtonEntity> entitys);
  9. }
  10. }