22 lines
437 B
C#
22 lines
437 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiangsuEarthquake.Models
|
|||
|
|
{
|
|||
|
|
public class LogRecordModel
|
|||
|
|
{
|
|||
|
|
public int Index { get; set; }
|
|||
|
|
|
|||
|
|
public DateTime RecordTime { get; set; }
|
|||
|
|
|
|||
|
|
public string Device_Name { get; set; }
|
|||
|
|
|
|||
|
|
public string Operation_Type { get; set; }
|
|||
|
|
|
|||
|
|
public string Record { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|