赖素文
authored
|
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.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 任务号
/// </summary>
[Table("sys_count")]
public partial class SysCount
{
public SysCount()
{
}
/// <summary>
/// 任务类型
/// </summary>
[Column("Type")]
public string Type { get; set; }
/// <summary>
/// 值
/// </summary>
[Column("Value")]
public string Value { get; set; }
}
}
|