团队作业

package com.atguigu.crud.bean;

public class Clubtype {
private Byte id;

private String name;

private String introduce;

public Byte getId() {
return id;
}

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

public String getName() {
return name;
}

public void setName(String name) {
this.name = name == null ? null : name.trim();
}

public String getIntroduce() {
return introduce;
}

public void setIntroduce(String introduce) {
this.introduce = introduce == null ? null : introduce.trim();
}
}

原文地址:https://www.cnblogs.com/9635741zly/p/14916617.html