From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopGoodsClass.java | 140 ++++++++++++++++++++++++---------------------- 1 files changed, 74 insertions(+), 66 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopGoodsClass.java b/fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopGoodsClass.java index 482d4e7..912d129 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopGoodsClass.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopGoodsClass.java @@ -1,66 +1,74 @@ -package com.yeshi.fanli.entity.shop; - -import java.util.Date; - -import org.yeshi.utils.mybatis.Column; -import org.yeshi.utils.mybatis.Table; - -/** - * 鍟嗗搧鍒嗙被 - * - * @author Administrator - * - */ -@Table("yeshi_ec_shop_goods_class") -public class BanLiShopGoodsClass { - @Column(name = "sgc_id") - private Long id; - @Column(name = "sgc_name") - private String name;// 鍒嗙被鍚嶇О - @Column(name = "sgc_picture") - private String picture;// 鍒嗙被鍥炬爣 - @Column(name = "sgc_create_time") - private Date createTime; - @Column(name = "sgc_update_time") - private Date updateTime; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getPicture() { - return picture; - } - - public void setPicture(String picture) { - this.picture = picture; - } - - public Date getCreateTime() { - return createTime; - } - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - } - - public Date getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(Date updateTime) { - this.updateTime = updateTime; - } -} +package com.yeshi.fanli.entity.shop; + +import java.util.Date; + +import org.yeshi.utils.generater.mybatis.Column; +import org.yeshi.utils.generater.mybatis.Table; + +/** + * 鍟嗗搧鍒嗙被 + * + * @author Administrator + * + */ +@Table("yeshi_ec_shop_goods_class") +public class BanLiShopGoodsClass { + @Column(name = "sgc_id") + private Long id; + + @Column(name = "sgc_name") + private String name;// 鍒嗙被鍚嶇О + @Column(name = "sgc_picture") + private String picture;// 鍒嗙被鍥炬爣 + @Column(name = "sgc_create_time") + private Date createTime; + @Column(name = "sgc_update_time") + private Date updateTime; + + public BanLiShopGoodsClass(Long id) { + this.id = id; + } + + public BanLiShopGoodsClass() { + } + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getPicture() { + return picture; + } + + public void setPicture(String picture) { + this.picture = picture; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } +} -- Gitblit v1.8.0