using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataVApi.Order.RequestModel { public class FullScreenBasic { /// /// 店铺Id /// public int? OrgId { get; set; } /// /// 设备Id /// public int? DeviceId { get; set; } /// /// 统计数量 /// public int? Count { get; set; } } }