GalleryManagerModelsParam.cs 446 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. using YiSha.Util;
  5. namespace YiSha.Model.Param.TK
  6. {
  7. /// <summary>
  8. /// 创 建:cmzx
  9. /// 日 期:2021-04-20 16:57
  10. /// 描 述:图库管理实体查询类
  11. /// </summary>
  12. public class GalleryManagerModelsListParam
  13. {
  14. /// <summary>
  15. /// 图库名称
  16. /// </summary>
  17. public string GalleryName { get; set; }
  18. }
  19. }