mic_script.cs 662 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace SmartCoalApplication.Core.DbOpreate.DbModel
  9. {
  10. [Table("mic_script", Schema = "dbo")]
  11. [Serializable]
  12. public class mic_script
  13. {
  14. public mic_script()
  15. {
  16. }
  17. ///<summary>
  18. /// 主键ID
  19. ///</summary>
  20. [Key]
  21. public int id { get; set; }
  22. ///<summary>
  23. /// 脚本名称
  24. ///</summary>
  25. public string name { get; set; }
  26. }
  27. }