Blame view

antis-ncc-net-core/NCC.BlindBox.Entitys/海报管理/Dto/TbPosterCrInput.cs 882 Bytes
96d61a51   wwk   更新
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  using System;
  using System.Collections.Generic;
  using NCC.Common.Model;
  
  namespace NCC.Blind.Entitys.Dto.TbPoster
  {
      /// <summary>
      /// 海报管理修改输入参数
      /// </summary>
      public class TbPosterCrInput
      {
          /// <summary>
          /// 图片
          /// </summary>
          public List<FileControlsModel> banner { get; set; }
          
          /// <summary>
          /// 创建时间
          /// </summary>
          public DateTime? creatorTime { get; set; }
          
          /// <summary>
          /// 修改时间
          /// </summary>
          public DateTime? lastModifyTime { get; set; }
          
          /// <summary>
          /// 创建用户
          /// </summary>
          public string creatorUserId { get; set; }
          
          /// <summary>
          /// 标题
          /// </summary>
          public string title { get; set; }
          
      }
  }