店铺扩展信息 增加描述字段

This commit is contained in:
2024-08-21 09:36:21 +08:00
parent 7d1571628f
commit df0570860d

View File

@@ -18,6 +18,7 @@ public class TbShopExtend extends Model<TbShopExtend> {
//商户Id //商户Id
private Integer shopId; private Integer shopId;
//img:图片text:文本; //img:图片text:文本;
private String name;
private String type; private String type;
//自定义key //自定义key
private String autokey; private String autokey;
@@ -53,6 +54,14 @@ public class TbShopExtend extends Model<TbShopExtend> {
this.type = type; this.type = type;
} }
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAutokey() { public String getAutokey() {
return autokey; return autokey;
} }