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;
|
|
[Table("FeedAndSpindle")]
|
public partial class FeedAndSpindle
|
{
|
public float? overFeed { get; set; }
|
|
public float? overSpindle { get; set; }
|
|
public float? actFeed { get; set; }
|
|
public float? actSpindle { get; set; }
|
|
public DateTime? time { get; set; }
|
|
[StringLength(64)]
|
public string machineID { get; set; }
|
|
public long id { get; set; }
|
}
|
}
|