TbSettingPriceInfoOutput.cs
866 Bytes
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
using System;
using System.Collections.Generic;
namespace NCC.Blind.Entitys.Dto.TbSettingPrice
{
/// <summary>
/// 价格设定输出参数
/// </summary>
public class TbSettingPriceInfoOutput
{
/// <summary>
/// 主键
/// </summary>
public string id { get; set; }
/// <summary>
/// 价格
/// </summary>
public decimal price { get; set; }
/// <summary>
/// 类型 1--盲盒价格 2--门票价格
/// </summary>
public string type { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? lastModifyTime { get; set; }
}
}