12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SmartCoalApplication.Core.DbOpreate.DbModel
- {
- [Table("mic_script", Schema = "dbo")]
- [Serializable]
- public class mic_script
- {
- public mic_script()
- {
-
- }
- ///<summary>
- /// 主键ID
- ///</summary>
- [Key]
- public int id { get; set; }
- ///<summary>
- /// 脚本名称
- ///</summary>
- public string name { get; set; }
- }
- }
|