12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Linq;
- namespace Ropin.Inspection.Model.ViewModel.DEV
- {
- public class TdevHandSearchModel : BaseSearchModel
- {
- public Guid C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_OrgCode { get; set; }
- public string C_StoreCode { get; set; }
- public string C_Status { get; set; }
- }
- public class dev_HandModel : BaseViewModel
- {
- public Guid C_ID { get; set; }
- [Required]
- public string C_Name { get; set; }
- public string C_HandNo { get; set; }
- public string C_QRCode { get; set; }
- public string C_MachineCode { get; set; }
- [Required]
- public DateTime? D_ProdDate { get; set; }
- [Required]
- public Guid C_OrgCode { get; set; }
- [Required]
- public string C_Marker { get; set; }
- public string C_ProdArea { get; set; }
- public string C_Manufacturer { get; set; }
- public string C_ImagePath { get; set; }
- public string C_IconPath { get; set; }
- public string C_ThreeDPath { get; set; }
- public string C_Parameter { get; set; }
- public string C_Contacts { get; set; }
- public string C_ContactPhone { get; set; }
- public string C_OfficialWebsiteUrl { get; set; }
- public int I_ValiDays { get; set; }
- public int I_Sort { get; set; }
- public string C_Remark { get; set; }
- public Guid C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public Guid? C_LastUpdatedBy { get; set; }
- public DateTime? D_LastUpdatedOn { get; set; }
- public string C_Status { get; set; } = "1";
- }
- public class devHandViewModel
- {
- public string C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_HandNo { get; set; }
- public string C_QRCode { get; set; }
- public string C_MachineCode { get; set; }
- public DateTime? D_ProdDate { get; set; }
- public Guid C_OrgCode { get; set; }
- public string C_OrgName { get; set; }
- public string C_Marker { get; set; }
- public string C_ProdArea { get; set; }
- public string C_Manufacturer { get; set; }
- public string C_ImagePath { get; set; }
- public string C_IconPath { get; set; }
- public string C_ThreeDPath { get; set; }
- public string C_Parameter { get; set; }
- public string C_Contacts { get; set; }
- public string C_ContactPhone { get; set; }
- public string C_OfficialWebsiteUrl { get; set; }
- public int I_ValiDays { get; set; }
- public int I_Sort { get; set; }
- public string C_Remark { get; set; }
- public string C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string C_LastUpdatedBy { get; set; }
- public DateTime? D_LastUpdatedOn { get; set; }
- public string C_Status { get; set; } = "1";
- public long? bindCut { get; set; }
- }
- }
|