19 lines
321 B
Java
19 lines
321 B
Java
package com.code.war.entry;
|
|
|
|
/**
|
|
* @Author: hyy
|
|
* @Date: 2020-04-24 15:53
|
|
*/
|
|
|
|
public class Token {
|
|
|
|
private String text;
|
|
private String type;
|
|
|
|
public Token(String text, String type) {
|
|
this.text = text;
|
|
this.type = type;
|
|
System.out.println("text=" + text + ",type=" + type);
|
|
}
|
|
}
|