using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { public class ReslutList { /// /// 总条数 /// public int totalNum { get; set; } /// /// 返回列表数据 /// public object resultList { get; set; } } }