schangxiang@126.com
2024-09-04 4c0f8b9123f9627be73fff05c2062cffeee42cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace iWare_SCADA_Model.TableModelSC
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    public partial class CNCStatus
    {
        public long id { get; set; }
 
        [Column("cncStatus", TypeName = "text")]
        public string cncStatus1 { get; set; }
 
        [Column(TypeName = "text")]
        public string alarmStatus { get; set; }
 
        public DateTime? time { get; set; }
 
        [StringLength(64)]
        public string machineID { get; set; }
    }
}