111
cjs
2025-06-06 03e67373c4c3bef21936ec1f9037f2ebcd434583
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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; }
    }
}