| | |
| | | private Integer materialLibType;// 物料库类型 1-营销商品库 0-非营销商品库
|
| | | @Column(name = "cg_other_info")
|
| | | private String otherInfo; // 商品其他信息-json字符串
|
| | | @Column(name = "cg_category_info")
|
| | | private String categoryInfo; // 商品分类信息
|
| | | |
| | | @Column(name = "cg_createtime")
|
| | | private Date createTime;
|
| | | @Column(name = "cg_updatetime")
|
| | |
| | | public void setOtherInfo(String otherInfo) {
|
| | | this.otherInfo = otherInfo;
|
| | | }
|
| | |
|
| | | public String getCategoryInfo() {
|
| | | return categoryInfo;
|
| | | }
|
| | |
|
| | | public void setCategoryInfo(String categoryInfo) {
|
| | | this.categoryInfo = categoryInfo;
|
| | | }
|
| | |
|
| | | }
|