|
@@ -22,494 +22,738 @@ public class ImsEweiShopGoods {
|
|
|
@TableId(type = IdType.AUTO)
|
|
@TableId(type = IdType.AUTO)
|
|
|
private Long id;
|
|
private Long id;
|
|
|
// 公众号id
|
|
// 公众号id
|
|
|
|
|
+ @TableField("uniacid")
|
|
|
private Integer uniacid;
|
|
private Integer uniacid;
|
|
|
// 一级分类ID
|
|
// 一级分类ID
|
|
|
|
|
+ @TableField("pcate")
|
|
|
private Long pcate;
|
|
private Long pcate;
|
|
|
// 二级分类ID
|
|
// 二级分类ID
|
|
|
|
|
+ @TableField("ccate")
|
|
|
private Long ccate;
|
|
private Long ccate;
|
|
|
// 三级分类ID
|
|
// 三级分类ID
|
|
|
|
|
+ @TableField("tcate")
|
|
|
private Long tcate;
|
|
private Long tcate;
|
|
|
// 1 实体商品 2 虚拟商品 3 虚拟物品(卡密) 4 批发商品 5 记次/时商品 9 周期购商品 20 租赁商品 21 定金购商品 22拍卖 23易拍即得拍卖品24易拍即得拼拍 25盲盒 26盲盒商品 27久猪租赁
|
|
// 1 实体商品 2 虚拟商品 3 虚拟物品(卡密) 4 批发商品 5 记次/时商品 9 周期购商品 20 租赁商品 21 定金购商品 22拍卖 23易拍即得拍卖品24易拍即得拼拍 25盲盒 26盲盒商品 27久猪租赁
|
|
|
|
|
+ @TableField("type")
|
|
|
private Integer type;
|
|
private Integer type;
|
|
|
// 多商户id
|
|
// 多商户id
|
|
|
|
|
+ @TableField("merchid")
|
|
|
private Integer merchid;
|
|
private Integer merchid;
|
|
|
// 状态 0 下架 1 上架 2 赠品上架
|
|
// 状态 0 下架 1 上架 2 赠品上架
|
|
|
|
|
+ @TableField("status")
|
|
|
private Integer status;
|
|
private Integer status;
|
|
|
// 排序
|
|
// 排序
|
|
|
|
|
+ @TableField("displayorder")
|
|
|
private Integer displayorder;
|
|
private Integer displayorder;
|
|
|
// 商品名称
|
|
// 商品名称
|
|
|
|
|
+ @TableField("title")
|
|
|
private String title;
|
|
private String title;
|
|
|
// 商品图(首图)
|
|
// 商品图(首图)
|
|
|
|
|
+ @TableField("thumb")
|
|
|
private String thumb;
|
|
private String thumb;
|
|
|
// 商品单位
|
|
// 商品单位
|
|
|
|
|
+ @TableField("unit")
|
|
|
private String unit;
|
|
private String unit;
|
|
|
// 分享描述
|
|
// 分享描述
|
|
|
|
|
+ @TableField("description")
|
|
|
private String description;
|
|
private String description;
|
|
|
// 商品详情
|
|
// 商品详情
|
|
|
|
|
+ @TableField("content")
|
|
|
private String content;
|
|
private String content;
|
|
|
// 商品编号
|
|
// 商品编号
|
|
|
|
|
+ @TableField("goodssn")
|
|
|
private String goodssn;
|
|
private String goodssn;
|
|
|
// 商品条码
|
|
// 商品条码
|
|
|
|
|
+ @TableField("productsn")
|
|
|
private String productsn;
|
|
private String productsn;
|
|
|
// 商品原价,价格要高,因为要打折
|
|
// 商品原价,价格要高,因为要打折
|
|
|
|
|
+ @TableField("productprice")
|
|
|
private BigDecimal productprice;
|
|
private BigDecimal productprice;
|
|
|
// 普通商品现价/拍卖保证金
|
|
// 普通商品现价/拍卖保证金
|
|
|
|
|
+ @TableField("marketprice")
|
|
|
private BigDecimal marketprice;
|
|
private BigDecimal marketprice;
|
|
|
// 租赁中押金/拍卖保留价/久猪租赁押金
|
|
// 租赁中押金/拍卖保留价/久猪租赁押金
|
|
|
|
|
+ @TableField("costprice")
|
|
|
private BigDecimal costprice;
|
|
private BigDecimal costprice;
|
|
|
// 成本价
|
|
// 成本价
|
|
|
- private BigDecimal cost_of_price;
|
|
|
|
|
|
|
+ @TableField("cost_of_price")
|
|
|
|
|
+ private BigDecimal costOfPrice;
|
|
|
// 原价
|
|
// 原价
|
|
|
|
|
+ @TableField("originalprice")
|
|
|
private BigDecimal originalprice;
|
|
private BigDecimal originalprice;
|
|
|
// 商品库存
|
|
// 商品库存
|
|
|
|
|
+ @TableField("total")
|
|
|
private Integer total;
|
|
private Integer total;
|
|
|
// 0 拍下减库存 1 付款减库存 2 永久不减
|
|
// 0 拍下减库存 1 付款减库存 2 永久不减
|
|
|
|
|
+ @TableField("totalcnf")
|
|
|
private Integer totalcnf;
|
|
private Integer totalcnf;
|
|
|
// 已出售数
|
|
// 已出售数
|
|
|
|
|
+ @TableField("sales")
|
|
|
private Integer sales;
|
|
private Integer sales;
|
|
|
// 实际售出数
|
|
// 实际售出数
|
|
|
|
|
+ @TableField("salesreal")
|
|
|
private Integer salesreal;
|
|
private Integer salesreal;
|
|
|
// 商品规格设置
|
|
// 商品规格设置
|
|
|
|
|
+ @TableField("spec")
|
|
|
private String spec;
|
|
private String spec;
|
|
|
// 建立时间
|
|
// 建立时间
|
|
|
|
|
+ @TableField("createtime")
|
|
|
private Long createtime;
|
|
private Long createtime;
|
|
|
// 重量
|
|
// 重量
|
|
|
|
|
+ @TableField("weight")
|
|
|
private BigDecimal weight;
|
|
private BigDecimal weight;
|
|
|
// 购买赠送积分,如果带%号,则为按成交价比例计算
|
|
// 购买赠送积分,如果带%号,则为按成交价比例计算
|
|
|
|
|
+ @TableField("credit")
|
|
|
private String credit;
|
|
private String credit;
|
|
|
// 单次最多购买量
|
|
// 单次最多购买量
|
|
|
|
|
+ @TableField("maxbuy")
|
|
|
private Integer maxbuy;
|
|
private Integer maxbuy;
|
|
|
// 用户最多购买量
|
|
// 用户最多购买量
|
|
|
|
|
+ @TableField("usermaxbuy")
|
|
|
private Integer usermaxbuy;
|
|
private Integer usermaxbuy;
|
|
|
// 启用商品规则 0 不启用 1 启用
|
|
// 启用商品规则 0 不启用 1 启用
|
|
|
|
|
+ @TableField("hasoption")
|
|
|
private Integer hasoption;
|
|
private Integer hasoption;
|
|
|
// 配送
|
|
// 配送
|
|
|
|
|
+ @TableField("dispatch")
|
|
|
private Integer dispatch;
|
|
private Integer dispatch;
|
|
|
// 缩略图地址
|
|
// 缩略图地址
|
|
|
- private String thumb_url;
|
|
|
|
|
|
|
+ @TableField("thumb_url")
|
|
|
|
|
+ private String thumbUrl;
|
|
|
// 新上
|
|
// 新上
|
|
|
|
|
+ @TableField("isnew")
|
|
|
private Integer isnew;
|
|
private Integer isnew;
|
|
|
// 热卖
|
|
// 热卖
|
|
|
|
|
+ @TableField("ishot")
|
|
|
private Integer ishot;
|
|
private Integer ishot;
|
|
|
// 促销
|
|
// 促销
|
|
|
|
|
+ @TableField("isdiscount")
|
|
|
private Integer isdiscount;
|
|
private Integer isdiscount;
|
|
|
// 促销标题
|
|
// 促销标题
|
|
|
- private String isdiscount_title;
|
|
|
|
|
|
|
+ @TableField("isdiscount_title")
|
|
|
|
|
+ private String isdiscountTitle;
|
|
|
// 促销时间
|
|
// 促销时间
|
|
|
- private Integer isdiscount_time;
|
|
|
|
|
|
|
+ @TableField("isdiscount_time")
|
|
|
|
|
+ private Integer isdiscountTime;
|
|
|
// 促销描述
|
|
// 促销描述
|
|
|
- private String isdiscount_discounts;
|
|
|
|
|
|
|
+ @TableField("isdiscount_discounts")
|
|
|
|
|
+ private String isdiscountDiscounts;
|
|
|
// 推荐 1是 0否
|
|
// 推荐 1是 0否
|
|
|
|
|
+ @TableField("isrecommand")
|
|
|
private Integer isrecommand;
|
|
private Integer isrecommand;
|
|
|
// 包邮 1是 0否
|
|
// 包邮 1是 0否
|
|
|
|
|
+ @TableField("issendfree")
|
|
|
private Integer issendfree;
|
|
private Integer issendfree;
|
|
|
// 限时卖
|
|
// 限时卖
|
|
|
|
|
+ @TableField("istime")
|
|
|
private Integer istime;
|
|
private Integer istime;
|
|
|
// 允许评价 1是 0否
|
|
// 允许评价 1是 0否
|
|
|
|
|
+ @TableField("iscomment")
|
|
|
private Integer iscomment;
|
|
private Integer iscomment;
|
|
|
// 限卖开始时间/拼拍开始倒计时分钟
|
|
// 限卖开始时间/拼拍开始倒计时分钟
|
|
|
|
|
+ @TableField("timestart")
|
|
|
private Integer timestart;
|
|
private Integer timestart;
|
|
|
// 限卖结束时间/拼拍结束倒计时分钟
|
|
// 限卖结束时间/拼拍结束倒计时分钟
|
|
|
|
|
+ @TableField("timeend")
|
|
|
private Integer timeend;
|
|
private Integer timeend;
|
|
|
// 查看次数
|
|
// 查看次数
|
|
|
|
|
+ @TableField("viewcount")
|
|
|
private Integer viewcount;
|
|
private Integer viewcount;
|
|
|
// 是否删除 1是 0否
|
|
// 是否删除 1是 0否
|
|
|
|
|
+ @TableField("deleted")
|
|
|
private Integer deleted;
|
|
private Integer deleted;
|
|
|
// 是否有分销 1是 0否
|
|
// 是否有分销 1是 0否
|
|
|
|
|
+ @TableField("hascommission")
|
|
|
private Integer hascommission;
|
|
private Integer hascommission;
|
|
|
// 一级分销比率
|
|
// 一级分销比率
|
|
|
- private BigDecimal commission1_rate;
|
|
|
|
|
|
|
+ @TableField("commission1_rate")
|
|
|
|
|
+ private BigDecimal commission1Rate;
|
|
|
// 一级分销固定佣金
|
|
// 一级分销固定佣金
|
|
|
- private BigDecimal commission1_pay;
|
|
|
|
|
|
|
+ @TableField("commission1_pay")
|
|
|
|
|
+ private BigDecimal commission1Pay;
|
|
|
// 二级分销比率
|
|
// 二级分销比率
|
|
|
- private BigDecimal commission2_rate;
|
|
|
|
|
|
|
+ @TableField("commission2_rate")
|
|
|
|
|
+ private BigDecimal commission2Rate;
|
|
|
// 二级分销固定佣金
|
|
// 二级分销固定佣金
|
|
|
- private BigDecimal commission2_pay;
|
|
|
|
|
|
|
+ @TableField("commission2_pay")
|
|
|
|
|
+ private BigDecimal commission2Pay;
|
|
|
// 三级分销比率
|
|
// 三级分销比率
|
|
|
- private BigDecimal commission3_rate;
|
|
|
|
|
|
|
+ @TableField("commission3_rate")
|
|
|
|
|
+ private BigDecimal commission3Rate;
|
|
|
// 三级分销固定佣金
|
|
// 三级分销固定佣金
|
|
|
- private BigDecimal commission3_pay;
|
|
|
|
|
|
|
+ @TableField("commission3_pay")
|
|
|
|
|
+ private BigDecimal commission3Pay;
|
|
|
// 分销
|
|
// 分销
|
|
|
|
|
+ @TableField("commission")
|
|
|
private String commission;
|
|
private String commission;
|
|
|
// 得分
|
|
// 得分
|
|
|
|
|
+ @TableField("score")
|
|
|
private BigDecimal score;
|
|
private BigDecimal score;
|
|
|
// 抓取产品信息ID/星链导入商品spuid,共富商城第三方商品id, 芸信供应链id
|
|
// 抓取产品信息ID/星链导入商品spuid,共富商城第三方商品id, 芸信供应链id
|
|
|
- private String catch_id;
|
|
|
|
|
|
|
+ @TableField("catch_id")
|
|
|
|
|
+ private String catchId;
|
|
|
// 抓取产品地址/共富商城第三方商品链接
|
|
// 抓取产品地址/共富商城第三方商品链接
|
|
|
- private String catch_url;
|
|
|
|
|
|
|
+ @TableField("catch_url")
|
|
|
|
|
+ private String catchUrl;
|
|
|
// 抓取产品来源/来源星链xinglian、淘宝助手taobao,共富商城第三方商品(拼多多gfPDD,京东gfJD,淘宝gfTaobao),芸信yunxin
|
|
// 抓取产品来源/来源星链xinglian、淘宝助手taobao,共富商城第三方商品(拼多多gfPDD,京东gfJD,淘宝gfTaobao),芸信yunxin
|
|
|
- private String catch_source;
|
|
|
|
|
|
|
+ @TableField("catch_source")
|
|
|
|
|
+ private String catchSource;
|
|
|
// 更新时间
|
|
// 更新时间
|
|
|
|
|
+ @TableField("updatetime")
|
|
|
private Long updatetime;
|
|
private Long updatetime;
|
|
|
// 分享标题
|
|
// 分享标题
|
|
|
- private String share_title;
|
|
|
|
|
|
|
+ @TableField("share_title")
|
|
|
|
|
+ private String shareTitle;
|
|
|
// 分享图标
|
|
// 分享图标
|
|
|
- private String share_icon;
|
|
|
|
|
|
|
+ @TableField("share_icon")
|
|
|
|
|
+ private String shareIcon;
|
|
|
// 货到付款 1 不支持 2 支持
|
|
// 货到付款 1 不支持 2 支持
|
|
|
|
|
+ @TableField("cash")
|
|
|
private Integer cash;
|
|
private Integer cash;
|
|
|
// 海报图片
|
|
// 海报图片
|
|
|
- private String commission_thumb;
|
|
|
|
|
|
|
+ @TableField("commission_thumb")
|
|
|
|
|
+ private String commissionThumb;
|
|
|
// 不参与会员折扣
|
|
// 不参与会员折扣
|
|
|
|
|
+ @TableField("isnodiscount")
|
|
|
private Integer isnodiscount;
|
|
private Integer isnodiscount;
|
|
|
// 会员等级浏览权限
|
|
// 会员等级浏览权限
|
|
|
|
|
+ @TableField("showlevels")
|
|
|
private String showlevels;
|
|
private String showlevels;
|
|
|
// 会员组购买权限
|
|
// 会员组购买权限
|
|
|
|
|
+ @TableField("buylevels")
|
|
|
private String buylevels;
|
|
private String buylevels;
|
|
|
// 会员组浏览权限
|
|
// 会员组浏览权限
|
|
|
|
|
+ @TableField("showgroups")
|
|
|
private String showgroups;
|
|
private String showgroups;
|
|
|
// 会员组购买权限
|
|
// 会员组购买权限
|
|
|
|
|
+ @TableField("buygroups")
|
|
|
private String buygroups;
|
|
private String buygroups;
|
|
|
// 支持线下核销 Null 0 1 不支持 2 支持
|
|
// 支持线下核销 Null 0 1 不支持 2 支持
|
|
|
|
|
+ @TableField("isverify")
|
|
|
private Integer isverify;
|
|
private Integer isverify;
|
|
|
// 核销:支持门店ID
|
|
// 核销:支持门店ID
|
|
|
|
|
+ @TableField("storeids")
|
|
|
private String storeids;
|
|
private String storeids;
|
|
|
// 商家通知
|
|
// 商家通知
|
|
|
|
|
+ @TableField("noticeopenid")
|
|
|
private String noticeopenid;
|
|
private String noticeopenid;
|
|
|
// 提醒类型
|
|
// 提醒类型
|
|
|
|
|
+ @TableField("noticetype")
|
|
|
private String noticetype;
|
|
private String noticetype;
|
|
|
// 需要关注
|
|
// 需要关注
|
|
|
|
|
+ @TableField("needfollow")
|
|
|
private Integer needfollow;
|
|
private Integer needfollow;
|
|
|
// 关注地址
|
|
// 关注地址
|
|
|
|
|
+ @TableField("followurl")
|
|
|
private String followurl;
|
|
private String followurl;
|
|
|
// 关注事项
|
|
// 关注事项
|
|
|
|
|
+ @TableField("followtip")
|
|
|
private String followtip;
|
|
private String followtip;
|
|
|
// 积分抵扣 0 不支持积分抵扣 >0 最多抵扣 元
|
|
// 积分抵扣 0 不支持积分抵扣 >0 最多抵扣 元
|
|
|
|
|
+ @TableField("deduct")
|
|
|
private BigDecimal deduct;
|
|
private BigDecimal deduct;
|
|
|
// 短名称 打印需要
|
|
// 短名称 打印需要
|
|
|
|
|
+ @TableField("shorttitle")
|
|
|
private String shorttitle;
|
|
private String shorttitle;
|
|
|
// 虚拟商品模板ID 0 多规格虚拟商品
|
|
// 虚拟商品模板ID 0 多规格虚拟商品
|
|
|
@TableField("`virtual`")
|
|
@TableField("`virtual`")
|
|
|
private Integer virtualVar;
|
|
private Integer virtualVar;
|
|
|
// 一级多重分类
|
|
// 一级多重分类
|
|
|
|
|
+ @TableField("ccates")
|
|
|
private String ccates;
|
|
private String ccates;
|
|
|
// 折扣
|
|
// 折扣
|
|
|
|
|
+ @TableField("discounts")
|
|
|
private String discounts;
|
|
private String discounts;
|
|
|
// 不执行分销
|
|
// 不执行分销
|
|
|
|
|
+ @TableField("nocommission")
|
|
|
private Integer nocommission;
|
|
private Integer nocommission;
|
|
|
// 隐藏分销按钮
|
|
// 隐藏分销按钮
|
|
|
|
|
+ @TableField("hidecommission")
|
|
|
private Integer hidecommission;
|
|
private Integer hidecommission;
|
|
|
// 二级多重分类
|
|
// 二级多重分类
|
|
|
|
|
+ @TableField("pcates")
|
|
|
private String pcates;
|
|
private String pcates;
|
|
|
// 三级多重分类
|
|
// 三级多重分类
|
|
|
|
|
+ @TableField("tcates")
|
|
|
private String tcates;
|
|
private String tcates;
|
|
|
// 店铺LOGO
|
|
// 店铺LOGO
|
|
|
- private String detail_logo;
|
|
|
|
|
|
|
+ @TableField("detail_logo")
|
|
|
|
|
+ private String detailLogo;
|
|
|
// 店铺名称
|
|
// 店铺名称
|
|
|
- private String detail_shopname;
|
|
|
|
|
|
|
+ @TableField("detail_shopname")
|
|
|
|
|
+ private String detailShopname;
|
|
|
// 全部宝贝x个
|
|
// 全部宝贝x个
|
|
|
- private String detail_totaltitle;
|
|
|
|
|
|
|
+ @TableField("detail_totaltitle")
|
|
|
|
|
+ private String detailTotaltitle;
|
|
|
// 按钮1名称
|
|
// 按钮1名称
|
|
|
- private String detail_btntext1;
|
|
|
|
|
|
|
+ @TableField("detail_btntext1")
|
|
|
|
|
+ private String detailBtntext1;
|
|
|
// 按钮1链接 默认"查看所有商品"及"默认的全部商品连接"
|
|
// 按钮1链接 默认"查看所有商品"及"默认的全部商品连接"
|
|
|
- private String detail_btnurl1;
|
|
|
|
|
|
|
+ @TableField("detail_btnurl1")
|
|
|
|
|
+ private String detailBtnurl1;
|
|
|
// 按钮2名称
|
|
// 按钮2名称
|
|
|
- private String detail_btntext2;
|
|
|
|
|
|
|
+ @TableField("detail_btntext2")
|
|
|
|
|
+ private String detailBtntext2;
|
|
|
// 按钮2链接 默认"进店逛逛"及"默认的小店或商城连接"
|
|
// 按钮2链接 默认"进店逛逛"及"默认的小店或商城连接"
|
|
|
- private String detail_btnurl2;
|
|
|
|
|
|
|
+ @TableField("detail_btnurl2")
|
|
|
|
|
+ private String detailBtnurl2;
|
|
|
// 多重分类数据集,这个是重点,用于商品分类
|
|
// 多重分类数据集,这个是重点,用于商品分类
|
|
|
|
|
+ @TableField("cates")
|
|
|
private String cates;
|
|
private String cates;
|
|
|
// 营销文章ID
|
|
// 营销文章ID
|
|
|
|
|
+ @TableField("artid")
|
|
|
private Integer artid;
|
|
private Integer artid;
|
|
|
// 余额抵扣 0 支持全额抵扣 -1 不支持余额抵扣 >0 最多抵扣 元
|
|
// 余额抵扣 0 支持全额抵扣 -1 不支持余额抵扣 >0 最多抵扣 元
|
|
|
|
|
+ @TableField("deduct2")
|
|
|
private BigDecimal deduct2;
|
|
private BigDecimal deduct2;
|
|
|
// 单品满件包邮 0 : 不支持满件包邮
|
|
// 单品满件包邮 0 : 不支持满件包邮
|
|
|
|
|
+ @TableField("ednum")
|
|
|
private Integer ednum;
|
|
private Integer ednum;
|
|
|
// 不参加满包邮的地区 ,0 : 不支持满件包邮
|
|
// 不参加满包邮的地区 ,0 : 不支持满件包邮
|
|
|
|
|
+ @TableField("edareas")
|
|
|
private String edareas;
|
|
private String edareas;
|
|
|
// 单品满额包邮 0 : 不支持满额包邮
|
|
// 单品满额包邮 0 : 不支持满额包邮
|
|
|
|
|
+ @TableField("edmoney")
|
|
|
private BigDecimal edmoney;
|
|
private BigDecimal edmoney;
|
|
|
// 自定义表单形式
|
|
// 自定义表单形式
|
|
|
|
|
+ @TableField("diyformtype")
|
|
|
private Integer diyformtype;
|
|
private Integer diyformtype;
|
|
|
// 自定义表单ID
|
|
// 自定义表单ID
|
|
|
|
|
+ @TableField("diyformid")
|
|
|
private Integer diyformid;
|
|
private Integer diyformid;
|
|
|
// 订单模式
|
|
// 订单模式
|
|
|
|
|
+ @TableField("diymode")
|
|
|
private Integer diymode;
|
|
private Integer diymode;
|
|
|
// 配送类型 0 运费模板 1 统一邮费
|
|
// 配送类型 0 运费模板 1 统一邮费
|
|
|
|
|
+ @TableField("dispatchtype")
|
|
|
private Integer dispatchtype;
|
|
private Integer dispatchtype;
|
|
|
// 配送ID
|
|
// 配送ID
|
|
|
|
|
+ @TableField("dispatchid")
|
|
|
private Integer dispatchid;
|
|
private Integer dispatchid;
|
|
|
// 统一邮费
|
|
// 统一邮费
|
|
|
|
|
+ @TableField("dispatchprice")
|
|
|
private BigDecimal dispatchprice;
|
|
private BigDecimal dispatchprice;
|
|
|
// 多件累计抵扣积分
|
|
// 多件累计抵扣积分
|
|
|
|
|
+ @TableField("manydeduct")
|
|
|
private Integer manydeduct;
|
|
private Integer manydeduct;
|
|
|
// 销售更新
|
|
// 销售更新
|
|
|
|
|
+ @TableField("saleupdate")
|
|
|
private Integer saleupdate;
|
|
private Integer saleupdate;
|
|
|
// 商户ID
|
|
// 商户ID
|
|
|
|
|
+ @TableField("shopid")
|
|
|
private Integer shopid;
|
|
private Integer shopid;
|
|
|
// 商品分类集合
|
|
// 商品分类集合
|
|
|
|
|
+ @TableField("allcates")
|
|
|
private String allcates;
|
|
private String allcates;
|
|
|
// 用户单次必须购买数量
|
|
// 用户单次必须购买数量
|
|
|
|
|
+ @TableField("minbuy")
|
|
|
private Integer minbuy;
|
|
private Integer minbuy;
|
|
|
// 提供发票
|
|
// 提供发票
|
|
|
|
|
+ @TableField("invoice")
|
|
|
private Integer invoice;
|
|
private Integer invoice;
|
|
|
// 保修
|
|
// 保修
|
|
|
|
|
+ @TableField("repair")
|
|
|
private Integer repair;
|
|
private Integer repair;
|
|
|
// 7天无理由退换
|
|
// 7天无理由退换
|
|
|
|
|
+ @TableField("seven")
|
|
|
private Integer seven;
|
|
private Integer seven;
|
|
|
// 余额返现
|
|
// 余额返现
|
|
|
|
|
+ @TableField("money")
|
|
|
private String money;
|
|
private String money;
|
|
|
// 多规格中最小价格,无规格时显示销售价
|
|
// 多规格中最小价格,无规格时显示销售价
|
|
|
|
|
+ @TableField("minprice")
|
|
|
private BigDecimal minprice;
|
|
private BigDecimal minprice;
|
|
|
// 多规格中最大价格,无规格时显示销售价
|
|
// 多规格中最大价格,无规格时显示销售价
|
|
|
|
|
+ @TableField("maxprice")
|
|
|
private BigDecimal maxprice;
|
|
private BigDecimal maxprice;
|
|
|
// 商品所在省 如为空则显示商城所在
|
|
// 商品所在省 如为空则显示商城所在
|
|
|
|
|
+ @TableField("province")
|
|
|
private String province;
|
|
private String province;
|
|
|
// 商品所在城市 如为空则显示商城所在
|
|
// 商品所在城市 如为空则显示商城所在
|
|
|
|
|
+ @TableField("city")
|
|
|
private String city;
|
|
private String city;
|
|
|
// 是否购买后显示
|
|
// 是否购买后显示
|
|
|
|
|
+ @TableField("buyshow")
|
|
|
private Integer buyshow;
|
|
private Integer buyshow;
|
|
|
// 购买后显示的内容
|
|
// 购买后显示的内容
|
|
|
|
|
+ @TableField("buycontent")
|
|
|
private String buycontent;
|
|
private String buycontent;
|
|
|
|
|
+ @TableField("saleupdate37975")
|
|
|
private Integer saleupdate37975;
|
|
private Integer saleupdate37975;
|
|
|
|
|
+ @TableField("saleupdate51117")
|
|
|
private Integer saleupdate51117;
|
|
private Integer saleupdate51117;
|
|
|
// 是否自动发货 1是 0否
|
|
// 是否自动发货 1是 0否
|
|
|
|
|
+ @TableField("virtualsend")
|
|
|
private Integer virtualsend;
|
|
private Integer virtualsend;
|
|
|
// 自动发货内容
|
|
// 自动发货内容
|
|
|
|
|
+ @TableField("virtualsendcontent")
|
|
|
private String virtualsendcontent;
|
|
private String virtualsendcontent;
|
|
|
// 0按订单核销1按消费码核销2按次核销
|
|
// 0按订单核销1按消费码核销2按次核销
|
|
|
|
|
+ @TableField("verifytype")
|
|
|
private Integer verifytype;
|
|
private Integer verifytype;
|
|
|
// 商品自定义的表单结构
|
|
// 商品自定义的表单结构
|
|
|
|
|
+ @TableField("diyfields")
|
|
|
private String diyfields;
|
|
private String diyfields;
|
|
|
// 存为模板时记录的id
|
|
// 存为模板时记录的id
|
|
|
|
|
+ @TableField("diysaveid")
|
|
|
private Integer diysaveid;
|
|
private Integer diysaveid;
|
|
|
// 模板更新
|
|
// 模板更新
|
|
|
|
|
+ @TableField("diysave")
|
|
|
private Integer diysave;
|
|
private Integer diysave;
|
|
|
// 正品保证
|
|
// 正品保证
|
|
|
|
|
+ @TableField("quality")
|
|
|
private Integer quality;
|
|
private Integer quality;
|
|
|
// 是否加入团购 1是 0否(必填)
|
|
// 是否加入团购 1是 0否(必填)
|
|
|
|
|
+ @TableField("groupstype")
|
|
|
private Integer groupstype;
|
|
private Integer groupstype;
|
|
|
// 显示库存(必填)
|
|
// 显示库存(必填)
|
|
|
|
|
+ @TableField("showtotal")
|
|
|
private Integer showtotal;
|
|
private Integer showtotal;
|
|
|
// 子标题
|
|
// 子标题
|
|
|
|
|
+ @TableField("subtitle")
|
|
|
private String subtitle;
|
|
private String subtitle;
|
|
|
// 详情页 分享按钮 0 弹出层 1跳转海报(必填)
|
|
// 详情页 分享按钮 0 弹出层 1跳转海报(必填)
|
|
|
|
|
+ @TableField("sharebtn")
|
|
|
private Integer sharebtn;
|
|
private Integer sharebtn;
|
|
|
|
|
+ @TableField("checked")
|
|
|
private Integer checked;
|
|
private Integer checked;
|
|
|
// 详情页面显示首图 0 不显示 1 显示 注:首图为列表页使用,尺寸较小
|
|
// 详情页面显示首图 0 不显示 1 显示 注:首图为列表页使用,尺寸较小
|
|
|
- private Integer thumb_first;
|
|
|
|
|
|
|
+ @TableField("thumb_first")
|
|
|
|
|
+ private Integer thumbFirst;
|
|
|
// 机端使用的价格 0 当前设置促销价格 1 商户设置促销价格
|
|
// 机端使用的价格 0 当前设置促销价格 1 商户设置促销价格
|
|
|
|
|
+ @TableField("merchsale")
|
|
|
private Integer merchsale;
|
|
private Integer merchsale;
|
|
|
// 商品关键字
|
|
// 商品关键字
|
|
|
|
|
+ @TableField("keywords")
|
|
|
private String keywords;
|
|
private String keywords;
|
|
|
// 商品标签
|
|
// 商品标签
|
|
|
|
|
+ @TableField("labelname")
|
|
|
private String labelname;
|
|
private String labelname;
|
|
|
// 自动收货 0 系统设置 -1 不自动收货 >0 天数
|
|
// 自动收货 0 系统设置 -1 不自动收货 >0 天数
|
|
|
|
|
+ @TableField("autoreceive")
|
|
|
private Integer autoreceive;
|
|
private Integer autoreceive;
|
|
|
// 不允许退货
|
|
// 不允许退货
|
|
|
|
|
+ @TableField("cannotrefund")
|
|
|
private Integer cannotrefund;
|
|
private Integer cannotrefund;
|
|
|
// 砍价
|
|
// 砍价
|
|
|
|
|
+ @TableField("bargain")
|
|
|
private Integer bargain;
|
|
private Integer bargain;
|
|
|
// 二次购买几折
|
|
// 二次购买几折
|
|
|
|
|
+ @TableField("buyagain")
|
|
|
private BigDecimal buyagain;
|
|
private BigDecimal buyagain;
|
|
|
// 是否持续使用
|
|
// 是否持续使用
|
|
|
- private Integer buyagain_islong;
|
|
|
|
|
|
|
+ @TableField("buyagain_islong")
|
|
|
|
|
+ private Integer buyagainIslong;
|
|
|
// 使用条件,0是付款后,1是完成后
|
|
// 使用条件,0是付款后,1是完成后
|
|
|
- private Integer buyagain_condition;
|
|
|
|
|
|
|
+ @TableField("buyagain_condition")
|
|
|
|
|
+ private Integer buyagainCondition;
|
|
|
// 可以使用优惠 默认是 0 不能使用其他优惠,1是可以使用
|
|
// 可以使用优惠 默认是 0 不能使用其他优惠,1是可以使用
|
|
|
- private Integer buyagain_sale;
|
|
|
|
|
|
|
+ @TableField("buyagain_sale")
|
|
|
|
|
+ private Integer buyagainSale;
|
|
|
// 关于重复购买的佣金
|
|
// 关于重复购买的佣金
|
|
|
- private String buyagain_commission;
|
|
|
|
|
|
|
+ @TableField("buyagain_commission")
|
|
|
|
|
+ private String buyagainCommission;
|
|
|
// 再次购买价格
|
|
// 再次购买价格
|
|
|
- private BigDecimal buyagain_price;
|
|
|
|
|
|
|
+ @TableField("buyagain_price")
|
|
|
|
|
+ private BigDecimal buyagainPrice;
|
|
|
// 自定义页面ID
|
|
// 自定义页面ID
|
|
|
|
|
+ @TableField("diypage")
|
|
|
private Integer diypage;
|
|
private Integer diypage;
|
|
|
// 是否 支持收银台
|
|
// 是否 支持收银台
|
|
|
|
|
+ @TableField("cashier")
|
|
|
private Integer cashier;
|
|
private Integer cashier;
|
|
|
// 核销:是否指定时间兑换(必填)
|
|
// 核销:是否指定时间兑换(必填)
|
|
|
|
|
+ @TableField("isendtime")
|
|
|
private Integer isendtime;
|
|
private Integer isendtime;
|
|
|
// 核销:自动使用期限(必填)
|
|
// 核销:自动使用期限(必填)
|
|
|
|
|
+ @TableField("usetime")
|
|
|
private Integer usetime;
|
|
private Integer usetime;
|
|
|
// 核销:使用有效期至(必填)
|
|
// 核销:使用有效期至(必填)
|
|
|
|
|
+ @TableField("endtime")
|
|
|
private Integer endtime;
|
|
private Integer endtime;
|
|
|
// 多商户排序(必填)
|
|
// 多商户排序(必填)
|
|
|
|
|
+ @TableField("merchdisplayorder")
|
|
|
private Integer merchdisplayorder;
|
|
private Integer merchdisplayorder;
|
|
|
// 兑换库存
|
|
// 兑换库存
|
|
|
- private Integer exchange_stock;
|
|
|
|
|
|
|
+ @TableField("exchange_stock")
|
|
|
|
|
+ private Integer exchangeStock;
|
|
|
// 兑换邮费(必填)
|
|
// 兑换邮费(必填)
|
|
|
- private BigDecimal exchange_postage;
|
|
|
|
|
|
|
+ @TableField("exchange_postage")
|
|
|
|
|
+ private BigDecimal exchangePostage;
|
|
|
// 是否开启预售(必填)
|
|
// 是否开启预售(必填)
|
|
|
|
|
+ @TableField("ispresell")
|
|
|
private Integer ispresell;
|
|
private Integer ispresell;
|
|
|
// 预售价格(必填)
|
|
// 预售价格(必填)
|
|
|
|
|
+ @TableField("presellprice")
|
|
|
private BigDecimal presellprice;
|
|
private BigDecimal presellprice;
|
|
|
// 预售商品结束设置(必填)
|
|
// 预售商品结束设置(必填)
|
|
|
|
|
+ @TableField("presellover")
|
|
|
private Integer presellover;
|
|
private Integer presellover;
|
|
|
// 预售商品结束X天后,商品转为正常销售(必填)
|
|
// 预售商品结束X天后,商品转为正常销售(必填)
|
|
|
|
|
+ @TableField("presellovertime")
|
|
|
private Integer presellovertime;
|
|
private Integer presellovertime;
|
|
|
// 是否设置预售开始时间(必填)
|
|
// 是否设置预售开始时间(必填)
|
|
|
|
|
+ @TableField("presellstart")
|
|
|
private Integer presellstart;
|
|
private Integer presellstart;
|
|
|
// 预售开始时间(必填)
|
|
// 预售开始时间(必填)
|
|
|
|
|
+ @TableField("preselltimestart")
|
|
|
private Integer preselltimestart;
|
|
private Integer preselltimestart;
|
|
|
// 是否设置预售结束时间(必填)
|
|
// 是否设置预售结束时间(必填)
|
|
|
|
|
+ @TableField("presellend")
|
|
|
private Integer presellend;
|
|
private Integer presellend;
|
|
|
// 预售结束时间(必填)
|
|
// 预售结束时间(必填)
|
|
|
|
|
+ @TableField("preselltimeend")
|
|
|
private Integer preselltimeend;
|
|
private Integer preselltimeend;
|
|
|
// 预售发货时间类型 0设置时间 1购买后X天(必填)
|
|
// 预售发货时间类型 0设置时间 1购买后X天(必填)
|
|
|
|
|
+ @TableField("presellsendtype")
|
|
|
private Integer presellsendtype;
|
|
private Integer presellsendtype;
|
|
|
//(必填)
|
|
//(必填)
|
|
|
|
|
+ @TableField("presellsendstatrttime")
|
|
|
private Integer presellsendstatrttime;
|
|
private Integer presellsendstatrttime;
|
|
|
// 预售购买后X天后发货(必填)
|
|
// 预售购买后X天后发货(必填)
|
|
|
|
|
+ @TableField("presellsendtime")
|
|
|
private Integer presellsendtime;
|
|
private Integer presellsendtime;
|
|
|
// 地区code
|
|
// 地区code
|
|
|
- private String edareas_code;
|
|
|
|
|
|
|
+ @TableField("edareas_code")
|
|
|
|
|
+ private String edareasCode;
|
|
|
// 总库存(必填)
|
|
// 总库存(必填)
|
|
|
- private Integer unite_total;
|
|
|
|
|
|
|
+ @TableField("unite_total")
|
|
|
|
|
+ private Integer uniteTotal;
|
|
|
// 3N营销会员
|
|
// 3N营销会员
|
|
|
|
|
+ @TableField("threen")
|
|
|
private String threen;
|
|
private String threen;
|
|
|
// 批发价格
|
|
// 批发价格
|
|
|
|
|
+ @TableField("intervalfloor")
|
|
|
private Integer intervalfloor;
|
|
private Integer intervalfloor;
|
|
|
// 批发单价
|
|
// 批发单价
|
|
|
|
|
+ @TableField("intervalprice")
|
|
|
private String intervalprice;
|
|
private String intervalprice;
|
|
|
// 是否为全返商品(必填)
|
|
// 是否为全返商品(必填)
|
|
|
|
|
+ @TableField("isfullback")
|
|
|
private Integer isfullback;
|
|
private Integer isfullback;
|
|
|
// 是否开启上架时间(必填)
|
|
// 是否开启上架时间(必填)
|
|
|
|
|
+ @TableField("isstatustime")
|
|
|
private Integer isstatustime;
|
|
private Integer isstatustime;
|
|
|
// 上架开始时间(必填)
|
|
// 上架开始时间(必填)
|
|
|
|
|
+ @TableField("statustimestart")
|
|
|
private Integer statustimestart;
|
|
private Integer statustimestart;
|
|
|
// 上架结束时间(必填)
|
|
// 上架结束时间(必填)
|
|
|
|
|
+ @TableField("statustimeend")
|
|
|
private Integer statustimeend;
|
|
private Integer statustimeend;
|
|
|
// 主商城搜索结果中是否显示该商品 1隐藏 0显示(必填)
|
|
// 主商城搜索结果中是否显示该商品 1隐藏 0显示(必填)
|
|
|
|
|
+ @TableField("nosearch")
|
|
|
private Integer nosearch;
|
|
private Integer nosearch;
|
|
|
// 显示销量(必填)
|
|
// 显示销量(必填)
|
|
|
|
|
+ @TableField("showsales")
|
|
|
private Integer showsales;
|
|
private Integer showsales;
|
|
|
// 是否为直播商品(必填)
|
|
// 是否为直播商品(必填)
|
|
|
|
|
+ @TableField("islive")
|
|
|
private Integer islive;
|
|
private Integer islive;
|
|
|
// 直播间价格(必填)
|
|
// 直播间价格(必填)
|
|
|
|
|
+ @TableField("liveprice")
|
|
|
private BigDecimal liveprice;
|
|
private BigDecimal liveprice;
|
|
|
// 是否开启微信卡片 0关闭 1开启
|
|
// 是否开启微信卡片 0关闭 1开启
|
|
|
|
|
+ @TableField("opencard")
|
|
|
private Integer opencard;
|
|
private Integer opencard;
|
|
|
// 微信卡片id
|
|
// 微信卡片id
|
|
|
|
|
+ @TableField("cardid")
|
|
|
private String cardid;
|
|
private String cardid;
|
|
|
// 可核销次数
|
|
// 可核销次数
|
|
|
|
|
+ @TableField("verifygoodsnum")
|
|
|
private Integer verifygoodsnum;
|
|
private Integer verifygoodsnum;
|
|
|
// 可核销天数
|
|
// 可核销天数
|
|
|
|
|
+ @TableField("verifygoodsdays")
|
|
|
private Integer verifygoodsdays;
|
|
private Integer verifygoodsdays;
|
|
|
// 核销时间类型
|
|
// 核销时间类型
|
|
|
|
|
+ @TableField("verifygoodslimittype")
|
|
|
private Integer verifygoodslimittype;
|
|
private Integer verifygoodslimittype;
|
|
|
// 核销过期时间
|
|
// 核销过期时间
|
|
|
|
|
+ @TableField("verifygoodslimitdate")
|
|
|
private Integer verifygoodslimitdate;
|
|
private Integer verifygoodslimitdate;
|
|
|
// 最小直播价(必填)
|
|
// 最小直播价(必填)
|
|
|
|
|
+ @TableField("minliveprice")
|
|
|
private BigDecimal minliveprice;
|
|
private BigDecimal minliveprice;
|
|
|
// 最大直播价(必填)
|
|
// 最大直播价(必填)
|
|
|
|
|
+ @TableField("maxliveprice")
|
|
|
private BigDecimal maxliveprice;
|
|
private BigDecimal maxliveprice;
|
|
|
// 订金(必填)
|
|
// 订金(必填)
|
|
|
|
|
+ @TableField("dowpayment")
|
|
|
private BigDecimal dowpayment;
|
|
private BigDecimal dowpayment;
|
|
|
// 行业模板id(必填)
|
|
// 行业模板id(必填)
|
|
|
|
|
+ @TableField("tempid")
|
|
|
private Integer tempid;
|
|
private Integer tempid;
|
|
|
// 允许门店设置价格 1允许 0禁止(必填)
|
|
// 允许门店设置价格 1允许 0禁止(必填)
|
|
|
|
|
+ @TableField("isstoreprice")
|
|
|
private Integer isstoreprice;
|
|
private Integer isstoreprice;
|
|
|
// 定金退还设置 0退还 -1不退还 1-12多少小时退还(必填)
|
|
// 定金退还设置 0退还 -1不退还 1-12多少小时退还(必填)
|
|
|
|
|
+ @TableField("beforehours")
|
|
|
private Integer beforehours;
|
|
private Integer beforehours;
|
|
|
// 新商品(必填)
|
|
// 新商品(必填)
|
|
|
|
|
+ @TableField("newgoods")
|
|
|
private Integer newgoods;
|
|
private Integer newgoods;
|
|
|
// 视频
|
|
// 视频
|
|
|
|
|
+ @TableField("video")
|
|
|
private String video;
|
|
private String video;
|
|
|
|
|
+ @TableField("officthumb")
|
|
|
private String officthumb;
|
|
private String officthumb;
|
|
|
// 是否初始化分类信息 1是 0否
|
|
// 是否初始化分类信息 1是 0否
|
|
|
|
|
+ @TableField("catesinit3")
|
|
|
private String catesinit3;
|
|
private String catesinit3;
|
|
|
// 是否调整过显示库存 1是 0否
|
|
// 是否调整过显示库存 1是 0否
|
|
|
|
|
+ @TableField("showtotaladd")
|
|
|
private Integer showtotaladd;
|
|
private Integer showtotaladd;
|
|
|
//(必填)
|
|
//(必填)
|
|
|
|
|
+ @TableField("verifygoodstype")
|
|
|
private Integer verifygoodstype;
|
|
private Integer verifygoodstype;
|
|
|
//(必填)
|
|
//(必填)
|
|
|
|
|
+ @TableField("isforceverifystore")
|
|
|
private Integer isforceverifystore;
|
|
private Integer isforceverifystore;
|
|
|
// 是否是进货 1
|
|
// 是否是进货 1
|
|
|
|
|
+ @TableField("commoditytype")
|
|
|
private Integer commoditytype;
|
|
private Integer commoditytype;
|
|
|
// 云商城商品id
|
|
// 云商城商品id
|
|
|
- private Integer gd_id;
|
|
|
|
|
|
|
+ @TableField("gd_id")
|
|
|
|
|
+ private Integer gdId;
|
|
|
// 是否是供货 1是
|
|
// 是否是供货 1是
|
|
|
|
|
+ @TableField("issupply")
|
|
|
private Integer issupply;
|
|
private Integer issupply;
|
|
|
// 机器人是否支持自提(0支持 1不支持)
|
|
// 机器人是否支持自提(0支持 1不支持)
|
|
|
|
|
+ @TableField("ispickup")
|
|
|
private Integer ispickup;
|
|
private Integer ispickup;
|
|
|
// 云商城店铺名称
|
|
// 云商城店铺名称
|
|
|
- private String ysh_merchname;
|
|
|
|
|
|
|
+ @TableField("ysh_merchname")
|
|
|
|
|
+ private String yshMerchname;
|
|
|
// 是否京东商品0:否1是
|
|
// 是否京东商品0:否1是
|
|
|
|
|
+ @TableField("isjingdong")
|
|
|
private Integer isjingdong;
|
|
private Integer isjingdong;
|
|
|
// 本币抵扣金额/久猪金猪豆(本币)最高可抵扣
|
|
// 本币抵扣金额/久猪金猪豆(本币)最高可抵扣
|
|
|
- private BigDecimal benbi_money;
|
|
|
|
|
|
|
+ @TableField("benbi_money")
|
|
|
|
|
+ private BigDecimal benbiMoney;
|
|
|
// 联盟币抵扣金额
|
|
// 联盟币抵扣金额
|
|
|
- private BigDecimal lmb_money;
|
|
|
|
|
|
|
+ @TableField("lmb_money")
|
|
|
|
|
+ private BigDecimal lmbMoney;
|
|
|
// 联盟币抵扣上限
|
|
// 联盟币抵扣上限
|
|
|
- private Integer lmb_num;
|
|
|
|
|
|
|
+ @TableField("lmb_num")
|
|
|
|
|
+ private Integer lmbNum;
|
|
|
// 积分币抵扣
|
|
// 积分币抵扣
|
|
|
- private Integer benbi_num;
|
|
|
|
|
|
|
+ @TableField("benbi_num")
|
|
|
|
|
+ private Integer benbiNum;
|
|
|
// 接入人
|
|
// 接入人
|
|
|
|
|
+ @TableField("jieruren")
|
|
|
private String jieruren;
|
|
private String jieruren;
|
|
|
// 推荐人
|
|
// 推荐人
|
|
|
|
|
+ @TableField("tuijianren")
|
|
|
private String tuijianren;
|
|
private String tuijianren;
|
|
|
// 分佣策略 1 按固定金额分账 2 按利润百分比分账(必填)
|
|
// 分佣策略 1 按固定金额分账 2 按利润百分比分账(必填)
|
|
|
- private Integer fenyong_tactics;
|
|
|
|
|
|
|
+ @TableField("fenyong_tactics")
|
|
|
|
|
+ private Integer fenyongTactics;
|
|
|
// 分佣联盟币(关系和交易)同时是定金购定金分佣金额「分佣策略=2时,该值是通过fenyong_profit_per计算得出的」
|
|
// 分佣联盟币(关系和交易)同时是定金购定金分佣金额「分佣策略=2时,该值是通过fenyong_profit_per计算得出的」
|
|
|
|
|
+ @TableField("fenyonglmb")
|
|
|
private BigDecimal fenyonglmb;
|
|
private BigDecimal fenyonglmb;
|
|
|
// 利润百分比
|
|
// 利润百分比
|
|
|
- private BigDecimal fenyong_profit_per;
|
|
|
|
|
|
|
+ @TableField("fenyong_profit_per")
|
|
|
|
|
+ private BigDecimal fenyongProfitPer;
|
|
|
// 满多少返联盟币
|
|
// 满多少返联盟币
|
|
|
- private BigDecimal man_saleprice;
|
|
|
|
|
|
|
+ @TableField("man_saleprice")
|
|
|
|
|
+ private BigDecimal manSaleprice;
|
|
|
// 返联盟币
|
|
// 返联盟币
|
|
|
- private Integer fan_lmb;
|
|
|
|
|
|
|
+ @TableField("fan_lmb")
|
|
|
|
|
+ private Integer fanLmb;
|
|
|
// 奖励积分币
|
|
// 奖励积分币
|
|
|
- private Integer reward_jfb;
|
|
|
|
|
|
|
+ @TableField("reward_jfb")
|
|
|
|
|
+ private Integer rewardJfb;
|
|
|
// 奖励积分币-允许多件累计 0 不允许 1 允许
|
|
// 奖励积分币-允许多件累计 0 不允许 1 允许
|
|
|
- private Integer allow_more;
|
|
|
|
|
|
|
+ @TableField("allow_more")
|
|
|
|
|
+ private Integer allowMore;
|
|
|
// 是否是订单全返商品
|
|
// 是否是订单全返商品
|
|
|
|
|
+ @TableField("isordersign")
|
|
|
private Integer isordersign;
|
|
private Integer isordersign;
|
|
|
// 定金购定金可支付开始时间/拍卖开始时间/拼拍开始时间
|
|
// 定金购定金可支付开始时间/拍卖开始时间/拼拍开始时间
|
|
|
|
|
+ @TableField("deposittimestart")
|
|
|
private Integer deposittimestart;
|
|
private Integer deposittimestart;
|
|
|
// 定金购定金可支付结束时间/拍卖结束时间/拼拍结束时间
|
|
// 定金购定金可支付结束时间/拍卖结束时间/拼拍结束时间
|
|
|
|
|
+ @TableField("deposittimeend")
|
|
|
private Integer deposittimeend;
|
|
private Integer deposittimeend;
|
|
|
// 定金购尾款开始时间
|
|
// 定金购尾款开始时间
|
|
|
|
|
+ @TableField("remainingtimestart")
|
|
|
private Integer remainingtimestart;
|
|
private Integer remainingtimestart;
|
|
|
// 定金购尾款结束时间
|
|
// 定金购尾款结束时间
|
|
|
|
|
+ @TableField("remainingtimeend")
|
|
|
private Integer remainingtimeend;
|
|
private Integer remainingtimeend;
|
|
|
// 定金购尾款/拍卖起拍价
|
|
// 定金购尾款/拍卖起拍价
|
|
|
|
|
+ @TableField("remainingprice")
|
|
|
private BigDecimal remainingprice;
|
|
private BigDecimal remainingprice;
|
|
|
// 定金购全额支付价格/拍卖参考价
|
|
// 定金购全额支付价格/拍卖参考价
|
|
|
|
|
+ @TableField("fullprice")
|
|
|
private BigDecimal fullprice;
|
|
private BigDecimal fullprice;
|
|
|
// 定金购每期天数
|
|
// 定金购每期天数
|
|
|
|
|
+ @TableField("cycleday")
|
|
|
private Integer cycleday;
|
|
private Integer cycleday;
|
|
|
// 定金购期数
|
|
// 定金购期数
|
|
|
|
|
+ @TableField("cyclenum")
|
|
|
private Integer cyclenum;
|
|
private Integer cyclenum;
|
|
|
// 分佣联盟币(关系和交易)定金购尾款分佣金额
|
|
// 分佣联盟币(关系和交易)定金购尾款分佣金额
|
|
|
- private BigDecimal fenyonglmb_r;
|
|
|
|
|
|
|
+ @TableField("fenyonglmb_r")
|
|
|
|
|
+ private BigDecimal fenyonglmbR;
|
|
|
// 分佣联盟币(关系和交易)定金全额支付分佣金额
|
|
// 分佣联盟币(关系和交易)定金全额支付分佣金额
|
|
|
- private BigDecimal fenyonglmb_f;
|
|
|
|
|
|
|
+ @TableField("fenyonglmb_f")
|
|
|
|
|
+ private BigDecimal fenyonglmbF;
|
|
|
// 拍卖加价幅度
|
|
// 拍卖加价幅度
|
|
|
|
|
+ @TableField("rangeprice")
|
|
|
private BigDecimal rangeprice;
|
|
private BigDecimal rangeprice;
|
|
|
// 拍卖加价延迟分钟/易拍记得 竞拍限时秒
|
|
// 拍卖加价延迟分钟/易拍记得 竞拍限时秒
|
|
|
|
|
+ @TableField("pricemin")
|
|
|
private Integer pricemin;
|
|
private Integer pricemin;
|
|
|
// 拍卖关联得商品id/拼拍关联拍卡id
|
|
// 拍卖关联得商品id/拼拍关联拍卡id
|
|
|
|
|
+ @TableField("relevanceid")
|
|
|
private Integer relevanceid;
|
|
private Integer relevanceid;
|
|
|
// 拍卖商品状态1流拍 (易拍记得 拍卖状态0未知1已结束)/拼拍(0未开始或进行中或成团等待开始1报名中2已结束)
|
|
// 拍卖商品状态1流拍 (易拍记得 拍卖状态0未知1已结束)/拼拍(0未开始或进行中或成团等待开始1报名中2已结束)
|
|
|
|
|
+ @TableField("auctionstatus")
|
|
|
private Integer auctionstatus;
|
|
private Integer auctionstatus;
|
|
|
// 拍卖商品1未开始/拼拍1成团等待开始
|
|
// 拍卖商品1未开始/拼拍1成团等待开始
|
|
|
|
|
+ @TableField("isauctiontime")
|
|
|
private Integer isauctiontime;
|
|
private Integer isauctiontime;
|
|
|
// 拍卖送派人userid
|
|
// 拍卖送派人userid
|
|
|
- private String souyue_userid;
|
|
|
|
|
|
|
+ @TableField("souyue_userid")
|
|
|
|
|
+ private String souyueUserid;
|
|
|
// 是否是供货推荐商品
|
|
// 是否是供货推荐商品
|
|
|
- private Integer issupply_recommend;
|
|
|
|
|
|
|
+ @TableField("issupply_recommend")
|
|
|
|
|
+ private Integer issupplyRecommend;
|
|
|
// 拍卖奖励比例
|
|
// 拍卖奖励比例
|
|
|
|
|
+ @TableField("rewardratio")
|
|
|
private BigDecimal rewardratio;
|
|
private BigDecimal rewardratio;
|
|
|
// 易拍记得拍卖房间人数
|
|
// 易拍记得拍卖房间人数
|
|
|
|
|
+ @TableField("auctionnum")
|
|
|
private Integer auctionnum;
|
|
private Integer auctionnum;
|
|
|
// 费用详情
|
|
// 费用详情
|
|
|
|
|
+ @TableField("costcontent")
|
|
|
private String costcontent;
|
|
private String costcontent;
|
|
|
// 行程路线/久猪扩展字段
|
|
// 行程路线/久猪扩展字段
|
|
|
|
|
+ @TableField("itinerary")
|
|
|
private String itinerary;
|
|
private String itinerary;
|
|
|
// 是否是旅游产品 1是
|
|
// 是否是旅游产品 1是
|
|
|
|
|
+ @TableField("isitinerary")
|
|
|
private Integer isitinerary;
|
|
private Integer isitinerary;
|
|
|
// 共富分佣
|
|
// 共富分佣
|
|
|
- private BigDecimal fenyong_rich;
|
|
|
|
|
|
|
+ @TableField("fenyong_rich")
|
|
|
|
|
+ private BigDecimal fenyongRich;
|
|
|
// 共富广告收益抵扣上限
|
|
// 共富广告收益抵扣上限
|
|
|
- private BigDecimal adv_money;
|
|
|
|
|
|
|
+ @TableField("adv_money")
|
|
|
|
|
+ private BigDecimal advMoney;
|
|
|
// 商品属性0无1汽车订购(717项目专用)
|
|
// 商品属性0无1汽车订购(717项目专用)
|
|
|
|
|
+ @TableField("attribute")
|
|
|
private Integer attribute;
|
|
private Integer attribute;
|
|
|
// 会员等级奖励积分币
|
|
// 会员等级奖励积分币
|
|
|
- private String level_reward_jfb;
|
|
|
|
|
|
|
+ @TableField("level_reward_jfb")
|
|
|
|
|
+ private String levelRewardJfb;
|
|
|
// 商品类别:0线上商品 1线下商品
|
|
// 商品类别:0线上商品 1线下商品
|
|
|
|
|
+ @TableField("kind")
|
|
|
private Integer kind;
|
|
private Integer kind;
|
|
|
-
|
|
|
|
|
//============以下是供应链需求,新增字段========================
|
|
//============以下是供应链需求,新增字段========================
|
|
|
//商品供应来源 芸信yunxin
|
|
//商品供应来源 芸信yunxin
|
|
|
- private String supply_source;
|
|
|
|
|
|
|
+ @TableField("supply_source")
|
|
|
|
|
+ private String supplySource;
|
|
|
//供应链的商品id
|
|
//供应链的商品id
|
|
|
- private String supply_id;
|
|
|
|
|
|
|
+ @TableField("supply_id")
|
|
|
|
|
+ private String supplyId;
|
|
|
}
|
|
}
|