using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Model
|
{
|
public class WhCmd
|
{
|
public int CMDID { get; set; }
|
public string TaskID { get; set; }
|
public string NumberNo { get; set; }
|
public string Palno { get; set; }
|
public int Height { get; set; }
|
public string CMDType { get; set; }
|
public string OldAddre { get; set; }
|
public string NowAddre { get; set; }
|
public int CMDStatu { get; set; }
|
public string CreateUser { get; set; }
|
public string CreateTime { get; set; }
|
public string Demo { get; set; }
|
public int IsDel { get; set; }
|
public string guid { get; set; }
|
}
|
}
|