Blame view

antis-ncc-net-core/ClassLibrary1/题库信息/Dto/TbQuestionCrInput.cs 1013 Bytes
4aba9b59   wwk   1
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
  using System;
  using System.Collections.Generic;
  using NCC.Common.Model;
  
  namespace NCC.Education.Entitys.Dto.TbQuestion
  {
      /// <summary>
      /// 题库信息修改输入参数
      /// </summary>
      public class TbQuestionCrInput
      {
          /// <summary>
          /// 标题
          /// </summary>
          public string title { get; set; }
          
          /// <summary>
          /// 图片信息
          /// </summary>
          public List<FileControlsModel> img { get; set; }
          
          /// <summary>
          /// 图文信息
          /// </summary>
          public string editors { get; set; }
          
          /// <summary>
          /// 创建时间
          /// </summary>
          public DateTime? creatorTime { get; set; }
          
          /// <summary>
          /// 修改时间
          /// </summary>
          public DateTime? lastModifyTime { get; set; }
1544d4d5   wwk   aa
36
37
38
39
40
          /// <summary>
          /// 是否默认 1--默认 2--普通
          /// </summary>
          public string detault { get; set; }
  
4aba9b59   wwk   1
41
42
      }
  }