using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport { public class DayCollectionRankingResp { /// /// 店铺id /// public Guid? ShopId { get; set; } /// /// 加盟商id /// public Guid ?CustomerId { get; set; } /// /// 日期字符串 /// public string CreateTimeStr { get; set; } /// /// 收款金额 /// public decimal CollectionAmount { get; set; } } }