| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDbManager.ResultSet
- {
- public class RegisterReqResult
- {
- public string Keyword { get; set; }
- public long StationLength { get; set; }
- public string SName { get; set; }
- public int RegistState { get; set; }
- }
- public class RegisterTerminalResult
- {
- public string SystemKey { get; set; }
- public long StationNameLength { get; set; }
- public string StationName { get; set; }
- public int RegisterResultCode { get; set; }
- }
- }
|