Test.java
370 字节
package com.teplot.air.controller;
/**
* Depiction:
* <p>
* Modify:
* <p>
* Author: Kevin Lynn
* <p>
* Create Date:2017年8月28日 下午5:37:27
*
*/
public class Test {
public Test() {
}
public static void main(String[] args) {
StationGateType gateType = new StationGateType("HK05");
System.out.println("gateType-->"+gateType.toString());
}
}