using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Model
|
{
|
public class OperationRecordModel
|
{
|
public string Id { get; set; }
|
public string OperationContent { get; set; }
|
public string CreateUser { get; set; }
|
public DateTime CreateTime { get; set; }
|
public string UpdateUser { get; set; }
|
public DateTime UpdateTime { get; set; }
|
public int IsDel { get; set; }
|
}
|
|
public class AjaxOperationRecordList
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
public string UserCode { get; set; }
|
public DateTime BeginTime { get; set; }
|
public DateTime EndTime { get; set; }
|
}
|
|
public class OperationModel
|
{
|
public string MenuName { get; set; }
|
public string FkNo { get; set; }
|
public string Type { get; set; }
|
public string Msg { get; set; }
|
}
|
public class WCSAlarmLogModel
|
{
|
public string PlcIP { get; set; }
|
public string AlarmCode { get; set; }
|
public string AlarmName { get; set; }
|
public string Type { get; set; }
|
public string AlarmType { get; set; }
|
public string LedIP { get; set; }
|
public string AlarmTime { get; set; }
|
public string IsDel { get; set; }
|
public string LedStatus { get; set; }
|
public DateTime CreateTime { get; set; }
|
public int CreateUser { get; set; }
|
}
|
}
|