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 TDEV_CmdInstruction
- {
- [Key]
- public string C_ID { get; set; }
- public string C_CmdCode { get; set; }
- public string C_Instruction { get; set; }
- public int I_ExeOrder { get; set; }
- public string C_Remark { get; set; }
- public string C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string C_Creator { get; set; }
- }
- }
|