12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Ropin.Inspection.Model.Entities
- {
- public class TDEV_DevData
- {
- [Required, Key]
- public Guid C_ID { get; set; } = Guid.NewGuid();
- [Required, MaxLength(50)]
- public string C_DeviceCode { get; set; }
- [Required, MaxLength(50)]
- public string C_ConfigCode { get; set; }
- [Required, MaxLength(50)]
- public string C_Value { get; set; }
- [Required]
- public DateTime D_CreateOn { get; set; }
- }
- }
|