12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- namespace WCS.Entity
- {
- public abstract class WCS_PROTOCOLDATA : OBJ
- {
- [Display(Name = "设备")]
- public WCS_DEVICE DEVICE { get; set; }
- public DateTime FRAME { get; set; }
- [Display(Name = "当前数据")]
- public bool ISLAST { get; set; }
- public int WCSVERSION { get; set; }
- }
- }
|