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_template_infos", Schema = "dbo")]
[Serializable]
public class mic_template_infos
{
public mic_template_infos()
{
}
///
/// 主键ID,步骤id
///
[Key]
public int id { get; set; }
///
/// 父id
///
public int parent_id { get; set; }
///
/// 多语言主键
///
public string language_name { get; set; }
///
/// 模板分类类型 1内置,不可删除 2可删除
///
public int template_type { get; set; }
///
/// 模板存储路径
///
public string template_path { get; set; }
}
}