RegisterReqResult.cs 606 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDbManager.ResultSet
  5. {
  6. public class RegisterReqResult
  7. {
  8. public string Keyword { get; set; }
  9. public long StationLength { get; set; }
  10. public string SName { get; set; }
  11. public int RegistState { get; set; }
  12. }
  13. public class RegisterTerminalResult
  14. {
  15. public string SystemKey { get; set; }
  16. public long StationNameLength { get; set; }
  17. public string StationName { get; set; }
  18. public int RegisterResultCode { get; set; }
  19. }
  20. }