24 lines
597 B
C#
24 lines
597 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Models.Ext
|
|||
|
|
{
|
|||
|
|
public class sys_action_parm_map_ext
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string process_id { get; set; }
|
|||
|
|
public string parm_id { get; set; }
|
|||
|
|
public string process_name { get; set; }
|
|||
|
|
public string title { get; set; }
|
|||
|
|
public string unit { get; set; }
|
|||
|
|
public string data_type { get; set; }
|
|||
|
|
public string data_value { get; set; }
|
|||
|
|
|
|||
|
|
public string plc_type { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|