123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- using YiSha.Util;
- namespace YiSha.Model.Param.TK
- {
- /// <summary>
- /// 创 建:cmzx
- /// 日 期:2021-04-20 16:57
- /// 描 述:图库管理实体查询类
- /// </summary>
- public class GalleryManagerModelsListParam
- {
- /// <summary>
- /// 图库名称
- /// </summary>
- public string GalleryName { get; set; }
- }
- }
|