using System.Collections.Generic; using System.Runtime.Serialization; namespace WIP_Models { /// /// 分页返回实体 /// [DataContract] public class PageResultModel { /// /// 总条数 /// [DataMember] public int total { get; set; } /// /// 数据列表 /// [DataMember] public List rows { get; set; } } }