团队作业

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();
}
}

posted @ 2021-05-08 00:28  Zwyooo  阅读(19)  评论(0编辑  收藏  举报