📄 ordertype.java
字号:
/**
*
*/
package teleReport.domain;
import java.io.Serializable;
/**
* @author new
*
*/
public class OrderType implements Serializable {
private static final long serialVersionUID = 8198828549720508245L;
private String orderTypeId;
private String orderTypeName;
public String getOrderTypeId() {
return orderTypeId;
}
public void setOrderTypeId(String orderTypeId) {
this.orderTypeId = orderTypeId;
}
public String getOrderTypeName() {
return orderTypeName;
}
public void setOrderTypeName(String orderTypeName) {
this.orderTypeName = orderTypeName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -