Blame view

antis-ncc-net-core/NCC.BlindBox.Entitys/抽奖记录/Dto/TbBoxLogCrInput.cs 1.31 KB
9dd13ed7   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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  using System;
  using System.Collections.Generic;
  
  namespace NCC.Blind.Entitys.Dto.TbBoxLog
  {
      /// <summary>
      /// 抽奖记录修改输入参数
      /// </summary>
      public class TbBoxLogCrInput
      {
          /// <summary>
          /// 用户ID
          /// </summary>
          public string userId { get; set; }
          
          /// <summary>
          /// 盲盒订单ID
          /// </summary>
          public string boxOrderId { get; set; }
          
          /// <summary>
          /// 路线 1--地域路线  2--人格路线
          /// </summary>
          public string type { get; set; }
          
          /// <summary>
          /// 地域线路ID
          /// </summary>
          public string areaLineId { get; set; }
          
          /// <summary>
          /// 人格线路ID
          /// </summary>
          public string mbtLineId { get; set; }
          
          /// <summary>
          /// 创建时间
          /// </summary>
          public DateTime? creatorTime { get; set; }
          
          /// <summary>
          /// 修改时间
          /// </summary>
          public DateTime? lastModifyTime { get; set; }
  
          /// <summary>
          /// 地域ID
          /// </summary>
          public string areaId { get; set; }
  
          /// <summary>
          /// 人格ID
          /// </summary>
          public string mbtId { get; set; }
  
      }
  }