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_DevCamera
- {
- [Key]
- public string C_ID { get;set; }
- public string C_CameraCode { get;set;}
- public string C_DevStoreCode { get;set; }
- public int F_ShootingTime { get; set; }
- public string C_Status { get; set; }
- public string C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string C_Creator { get; set; }
- }
- }
|