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 PaintDotNet.DbOpreate.DbModel
{
[Table("mic_script_step", Schema = "dbo")]
[Serializable]
public class mic_script_step
{
public mic_script_step()
{
}
///
/// 主键ID,步骤id
///
[Key]
public int id { get; set; }
///
/// 脚本表id
///
public int script_id { get; set; }
///
/// 步骤名称
///
public string step_name { get; set; }
///
/// 步骤对应的菜单编号
///
public int menu_id { get; set; }
///
/// 1自动执行 2手动执行
///
public int automatic { get; set; }
///
/// 脚本步骤排序,按排序的正序执行
///
public int step_sort { get; set; }
[NotMapped]
public List sonList { get; set; }
}
}