TaskAssignModel.cs
1.08 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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 任务下发
/// </summary>
public partial class TaskAssignModel
{
/// <summary>
/// "任务ID,任务编辑器中生成的唯一任务号,string(20),唯一,必填",
/// </summary>
public string taskID { get; set; }
/// <summary>
/// "任务名称,string(50),唯一,必填",
/// </summary>
public string taskName { get; set; }
/// <summary>
/// "任务群组,string(20),唯一,必填",
/// </summary>
public string taskGroup { get; set; }
/// <summary>
/// "任务类型,string(20),唯一,必填",
/// </summary>
public string taskType { get; set; }
/// <summary>
/// "任务等级, int,必填",
/// </summary>
public int taskLevel { get; set; }
public TaskAssignModel()
{
taskLevel = 0;
}
}
}