namespace Model
|
{
|
public class OrdType
|
{
|
public string OrdTypeNo { get; set; }
|
public string OrdTypeName { get; set; }
|
public string Demo { get; set; }
|
public string Demo1 { get; set; }
|
public string Demo2 { get; set; }
|
}
|
|
public class AjaxOrdTypeList : OrdType
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
}
|
|
public class AjaxOrdTypeInfo : Area
|
{
|
public string Operation { get; set; }
|
}
|
}
|