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_param", Schema = "dbo")]
[Serializable]
public class mic_script_step_param
{
///
/// 主键ID,步骤id
///
[Key]
public int id { get; set; }
///
/// 脚本表id
///
public int script_id { get; set; }
///
/// 步骤id
///
public int step_id { get; set; }
///
/// 参数类型的枚举值
///
public int param_type { get; set; }
///
/// 参数键
///
public string param_key { get; set; }
///
/// 参数值
///
public string param_value { get; set; }
///
/// 参数格式化后的值
///
public object value;
}
}