1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- namespace WCS.Entity
- {
- public class WCS_CMD : OBJ
- {
- [StringLength(20)]
- public string DEVICE_CODE { get; set; }
- [StringLength(256)]
- public string PROTOCOL{ get; set; }
- [StringLength(32)]
- public string PROPERTY { get; set; }
- [StringLength(512)]
- public string VALUE { get; set; }
- public int WCSVERSION { get; set; }
- }
- }
|