店铺扩展信息 增加描述字段
This commit is contained in:
parent
7d1571628f
commit
df0570860d
|
|
@ -18,6 +18,7 @@ public class TbShopExtend extends Model<TbShopExtend> {
|
|||
//商户Id
|
||||
private Integer shopId;
|
||||
//img:图片;text:文本;
|
||||
private String name;
|
||||
private String type;
|
||||
//自定义key
|
||||
private String autokey;
|
||||
|
|
@ -53,6 +54,14 @@ public class TbShopExtend extends Model<TbShopExtend> {
|
|||
this.type = type;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getAutokey() {
|
||||
return autokey;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue