1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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_view_infos", Schema = "dbo")]
- [Serializable]
- public class mic_view_infos
- {
- public mic_view_infos()
- {
-
- }
- ///<summary>
- /// 主键ID,步骤id
- ///</summary>
- [Key]
- public int id { get; set; }
- /// <summary>
- /// 视场名称
- /// </summary>
- public string view_name { get; set; }
- /// <summary>
- /// 视场描述
- /// </summary>
- public string view_descrption { get; set; }
- /// <summary>
- /// 视场xml
- /// </summary>
- public string view_xml { get; set; }
- }
- }
|