using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// 获取经销商请求参数 /// public class RequestDistributors { /// /// 省ID /// public string provinceID { get; set; } /// /// 市ID /// public string cityID { get; set; } /// /// 区ID /// public string areaID { get; set; } } }