using System;
|
|
namespace Model
|
{
|
public class Unit
|
{
|
public string UnitNum { set; get; }
|
|
public string UnitName { set; get; }
|
public string CreatUser { set; get; }
|
public DateTime CreatTime { set; get; }
|
public DateTime UpdateTime { get; set; }
|
|
public string UpdateUser { get; set; }
|
|
public string AuditFlag { set; get; }
|
|
public string AuditUser { set; get; }
|
public DateTime AuditTime { set; get; }
|
public string Demo { set; get; }
|
public string Guid {get;set;}
|
}
|
|
public class AjaxUnitList
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
public string UnitNum { get; set; }
|
public string UnitName { get; set; }
|
|
}
|
|
public class AjaxUnit : Unit
|
{
|
|
public string list { get; set; }
|
public string Operation { get; set; }
|
}
|
}
|