using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model { public class TprdProductSearchModel : BaseSearchModel { public string C_AreaCode { get; set; } public string C_QRCode { get; set; } public string C_SKUCode { get; set; } public string C_StoreCode { get; set; } public string C_DeviceCode { get; set; } public string C_SpotCode { get; set; } public string FilterCode { get; set; } } public class TprdProductWithDataSearchModel : BaseSearchModel { public string C_AreaCode { get; set; } public string C_StoreCode { get; set; } } public class TprdDeviceByAreaSearchModel : BaseSearchModel { public string C_AreaCode { get; set; } public string C_StoreCode { get; set; } } }