TDEV_CmdInstruction.cs 642 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ropin.Inspection.Model.Entities
  8. {
  9. public class TDEV_CmdInstruction
  10. {
  11. [Key]
  12. public string C_ID { get; set; }
  13. public string C_CmdCode { get; set; }
  14. public string C_Instruction { get; set; }
  15. public int I_ExeOrder { get; set; }
  16. public string C_Remark { get; set; }
  17. public string C_CreateBy { get; set; }
  18. public DateTime D_CreateOn { get; set; }
  19. public string C_Creator { get; set; }
  20. }
  21. }