12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDataCourier.SpsData
- {
- public partial class TDspinfo
- {
- public string DspNo { get; set; }
- public string DspType { get; set; }
- public string SupplierName { get; set; }
- public sbyte? Protocol { get; set; }
- public string Address { get; set; }
- public int? LimitDate { get; set; }
- public string State { get; set; }
- public string FactoryNo { get; set; }
- public DateTime? FactoryDate { get; set; }
- public int? Nozzcount { get; set; }
- }
- }
|