API
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IUserDefinedGroupRepository.cs 482B

123456789101112131415
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Containers.Property;
  3. using UnivateProperties_API.Model.Properties;
  4. namespace UnivateProperties_API.Repository.Properties
  5. {
  6. public interface IUserDefinedGroupRepository : IRepository<UserDefinedGroup>
  7. {
  8. List<Group> GetFieldList(string name);
  9. List<Group> GetFieldList(string propertyType, string name, int propertyID);
  10. List<Group> GetFieldListByPropType(string propertyType);
  11. }
  12. }