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()
{
}
///
/// 主键ID,步骤id
///
[Key]
public int id { get; set; }
///
/// 视场名称
///
public string view_name { get; set; }
///
/// 视场描述
///
public string view_descrption { get; set; }
///
/// 视场xml
///
public string view_xml { get; set; }
}
}