using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// 扫码响应实体 /// public class ResponseUserRenew { /// /// /// public List scanCodeList { get; set; } /// /// 是否欠费 /// public bool isArrears { get; set; } /// /// 超时时间 /// public int overTime { get;set; } /// /// 超时费用 /// public decimal overTimeCost { get;set; } } /// /// 扫码响应实体 /// public class ResponseScanCode { /// /// /// public List scanCodeList { get; set; } ///// ///// 站点ID ///// //public string siteID //{ // get;set; //} ///// ///// 站点名称 ///// //public string siteName //{ // get; set; //} ///// ///// 景点ID ///// //public string scenicID //{ // get;set; //} ///// ///// 景点名称 ///// //public string scenicName //{ // get;set; //} } /// /// 扫码 /// public class ScanCode { /// /// 预估时间 /// public int borrowedTime { get; set; } /// /// 费用 /// public decimal costs { get; set; } } }