using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Model
|
{
|
public class AlarmModel
|
{
|
public string Id { get; set; }
|
public string Name { get; set; }
|
public string ErrorCode { get; set; }
|
public string AlarmName { get; set; }
|
public string State { 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 string StateName { get; set; }
|
}
|
|
public class AjaxAlarmList
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
public string Name { get; set; }
|
public string State { get; set; }
|
}
|
}
|