彭传飞
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
|
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 人工确认完成
/// </summary>
public partial class TaskFinishModel
{
/// <summary>
/// "当前站台, string(20),必填"
/// </summary>
public string stName { get; set; }
/// <summary>
/// "任务状态,int 99代表完成, 必填",
/// </summary>
public int stState { get; set; }
public TaskFinishModel()
{
stState = 0;
}
}
}
|