using System; using System.Collections.Generic; using System.Text; namespace Sugar.Enties { /// /// 缴费信息 /// public class PayDTO { /// /// 缴费表主键 /// public string farwarid { get; set; } /// /// 应缴费用 /// public decimal? money { get; set; } /// /// 房主名称 /// public string ownername { get; set; } /// /// 房屋名称 /// public string hname { get; set; } /// /// 房主Id /// public string ownerid { get; set; } /// /// 付款方式 /// public string paytype { get; set; } /// /// 用户微信号 /// public string OpenId { get; set; } } }