12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.Entities
- {
- public class TVMC_CameraMigrate
- {
- [Key]
- public string C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_CameraCode { get; set; }
- public string C_LastStoreCode { get; set; }
- public string C_CurrentStoreCode { get; set; }
- public string C_Remark { get; set; }
- public string C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- }
- }
|