1234567891011121314151617 |
- using System;
- namespace WCS.API.Model
- {
- public class PelletIdStatus
- {
- public string STR_ID { get; set; }
- public string AGVS_STR_ID { get; set; }
- public int STATE { get; set; }
- public string PELLET_ID { get; set; }
- public DateTime CreateTime { get; set; }
- }
- }
|