using System; using System.Collections.Generic; using System.Text; namespace Sugar.Enties { /// /// 缴费信息 /// public class PayDTO { /// /// 缴费表主键 /// public string farwarid { get; set; } /// /// 应缴费用 /// public string money { get; set; } /// /// 房主名称 /// public string ownername { get; set; } /// /// 房屋名称 /// public string hname { get; set; } } }