using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model { public class TaicTemplateModel : BaseViewModel { public string CId { get; set; } public string CName { get; set; } public string CQrcode { get; set; } public string CMarker { get; set; } public string CProdArea { get; set; } public string CManufacturer { get; set; } public string CImagePath { get; set; } public string CIconPath { get; set; } public string CThreeDpath { get; set; } public string CParameter { get; set; } public string CContacts { get; set; } public string CContactPhone { get; set; } public string COfficialWebsiteUrl { get; set; } public int? IValiDays { get; set; } public int? I_Sort { get; set; } public string CRemark { get; set; } public string CCreateBy { get; set; } public DateTime? DCreateOn { get; set; } public string CLastUpdatedBy { get; set; } public DateTime? DLastUpdatedOn { get; set; } public int CStatus { get; set; } } public class TaicTemplateSearchModel : BaseSearchModel { public string Name { get; set; } } public class AiBoxModel //: BaseViewModel { public string CId { get; set; } public string CName { get; set; } public string CAiboxNo { get; set; } public string CQrcode { get; set; } public string CMachineCode { get; set; } public DateTime DProdDate { get; set; } public string CAiboxTemplateCode { get; set; } public string CStoreCode { get; set; } public string CCfgUrl { get; set; } public int? I_Sort { get; set; } public string CRemark { get; set; } public string CCreateBy { get; set; } public DateTime DCreateOn { get; set; } public string CLastUpdatedBy { get; set; } public DateTime? DLastUpdatedOn { get; set; } public int CRunStatus { get; set; } public int CStatus { get; set; } } public class AiBoxSearchModel : BaseSearchModel { public string Name { get; set; } } }