using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Model
|
{
|
public class Region
|
{
|
public int ID { get; set; }
|
public string RegionCode { get; set; }
|
|
public string RegionName { get; set; }
|
|
public string Demo { get; set; }
|
|
public int IsDel { get; set; }
|
|
public string Guid { get; set; }
|
|
public DateTime CreatTime { get; set; }
|
|
public string CreatUser { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public string UpdateUser { get; set; }
|
}
|
|
public class QueryRegion : Region
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
}
|
|
public class SetRegion : Region
|
{
|
public string Operation { get; set; }
|
}
|
}
|