1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.IMisPlus.Models
- {
-
-
-
-
- public class Terminal
- {
-
-
-
-
- public byte Id { get; set; }
-
-
-
-
- public byte PayMode { get; set; }
-
-
-
-
-
- public string Address { get; set; }
-
-
-
-
- public byte ProtocolType { get; set; }
- }
- }
|