12345678910111213141516171819202122232425262728 |
- 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 TDEV_DevOpeAccountConfig
- {
- [Key]
- [MaxLength(50)]
- public string C_ID { get; set; }
- [MaxLength(50)]
- [Required]
- public string C_DevStoreCode { get; set; }
- [MaxLength(5000)]
- [Required]
- public string C_Config { get; set; }
- [MaxLength(1024)]
- public string C_Remark { get; set; }
- [Required]
- public Guid C_CreateBy { get; set; }
- [Required]
- public DateTime D_CreateOn { get; set; }
- }
- }
|