tbsubtype.java

来自「构建一个以商品销售为主体的电子商城,功能描叙如下: 1.按商品大类及商品名称进」· Java 代码 · 共 43 行

JAVA
43
字号
package com.lzw.model;

public class TbSubType implements java.io.Serializable {
	private Integer id;

	private TbSuperType tbSuperType;

	private String typeName;

	public TbSubType() {
	}

	public TbSubType(Integer id, TbSuperType tbSuperType, String typeName) {
		this.id = id;
		this.tbSuperType = tbSuperType;
		this.typeName = typeName;
	}

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public TbSuperType getTbSuperType() {
		return this.tbSuperType;
	}

	public void setTbSuperType(TbSuperType tbSuperType) {
		this.tbSuperType = tbSuperType;
	}

	public String getTypeName() {
		return this.typeName;
	}

	public void setTypeName(String typeName) {
		this.typeName = typeName;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?