using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HH.AMS.Ex.Model.TimescaleDB
|
{
|
public class tn_time_hangchaagv
|
{
|
public DateTime time { get; set; }
|
public string agvno { get; set; }
|
public double agvbattery { get; set; }
|
public double agverrcode { get; set; }
|
public string agverrmsg { get; set; }
|
public double agvxpos { get; set; }
|
public double agvypos { get; set; }
|
}
|
|
public class tn_time_hangchaagvView
|
{
|
public Int64 id { get; set; }
|
public string time { get; set; }
|
public string agvno { get; set; }
|
public double agvbattery { get; set; }
|
public double agverrcode { get; set; }
|
public string agverrmsg { get; set; }
|
public double agvxpos { get; set; }
|
public double agvypos { get; set; }
|
}
|
}
|