ApiInterfaceLog_Old.cs
1.26 KB
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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 出入库完成回传
/// </summary>
[Table("Apiinterfacelog_Old")]
public partial class ApiInterfaceLog_Old : SysEntity
{
public ApiInterfaceLog_Old()
{
}
/// <summary>
/// 类型
/// </summary>
[Column("type")]
public string Type { get; set; }
/// <summary>
/// 状态
/// </summary>
[Column("status")]
public int? Status { get; set; }
/// <summary>
/// 唯一标识(上游任务号加上游系统单号)
/// </summary>
[Column("taskNo")]
public string TaskNo { get; set; }
/// <summary>
///任务总条数
/// </summary>
[Column("allNum")]
public int? AllNum { get; set; }
/// <summary>
/// 完成总条数
/// </summary>
[Column("comNum")]
public int? ComNum { get; set; }
/// <summary>
/// 数据
/// </summary>
[Column("request")]
public string Request { get; set; }
/// <summary>
/// 报错信息
/// </summary>
[Column("message")]
public string Message { get; set; }
}
}