23 lines
476 B
C#
23 lines
476 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Models.Models
|
|||
|
|
{
|
|||
|
|
public class sys_action
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public string id { get; set; }
|
|||
|
|
public string action_name { get; set; }
|
|||
|
|
|
|||
|
|
public string action_unit { get; set; }
|
|||
|
|
|
|||
|
|
public string action_adress { get; set; }
|
|||
|
|
public string plc_type { get; set; }
|
|||
|
|
public string remark { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|