Commit 72307b97 by 宋珺琪

添加stbh和asjbh的一个实体类

parent f49b0d04
package com.founder.commonutils.model.newPublicEntity.TgxcEntity;
import lombok.Data;
@Data
public class Tgentity {
private String stbh;
private String asjbh;
public Tgentity(String stbh, String asjbh) {
this.stbh = stbh;
this.asjbh = asjbh;
}
public Tgentity() {
}
public String getStbh() {
return stbh;
}
public void setStbh(String stbh) {
this.stbh = stbh;
}
public String getAsjbh() {
return asjbh;
}
public void setAsjbh(String asjbh) {
this.asjbh = asjbh;
}
@Override
public String toString() {
return "entity{" +
"stbh='" + stbh + '\'' +
", asjbh='" + asjbh + '\'' +
'}';
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment