| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using SQLite.CodeFirst;
- namespace OHV.Common.Model
- {
- public class AxisVelocityData
- {
- [Autoincrement]
- public int id { get; set; }
- [Index("AxisName")]
- [Required]
- public string AxisName { get; set; }
- public double AutoRunVelocity { get; set; }
- public double AutoRunAccelerate { get; set; }
- public double AutoRunDecelerate { get; set; }
- public double ManualRunVelocity { get; set; }
- public double JogSlow { get; set; }
- public double JogFast { get; set; }
- public double Tolerance { get; set; }
- public DateTime CreateTime { get; set; }
- public DateTime EditTime { get; set; }
- public AxisVelocityData()
- {
- this.CreateTime = DateTime.Now;
- this.EditTime = DateTime.Now;
- }
- }
- }
|