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
|
using System;
using System.Collections.Generic;
namespace NCC.Blind.Entitys.Dto.TbUserAgreement
{
/// <summary>
/// 用户协议修改输入参数
/// </summary>
public class TbUserAgreementCrInput
{
/// <summary>
/// 协议内容
/// </summary>
public string contents { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? lastModifyTime { get; set; }
}
}
|