🎨 产品信息增加标签字段
This commit is contained in:
parent
f048c86338
commit
96e36b8989
@ -2,6 +2,7 @@ package com.rymcu.forest.dto;
|
|||||||
|
|
||||||
import com.rymcu.forest.entity.Product;
|
import com.rymcu.forest.entity.Product;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created on 2022/6/21 9:38.
|
* Created on 2022/6/21 9:38.
|
||||||
@ -11,6 +12,7 @@ import lombok.Data;
|
|||||||
* @packageName com.rymcu.forest.dto
|
* @packageName com.rymcu.forest.dto
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper=false)
|
||||||
public class ProductDTO extends Product {
|
public class ProductDTO extends Product {
|
||||||
/**
|
/**
|
||||||
* 文章内容
|
* 文章内容
|
||||||
|
@ -57,4 +57,6 @@ public class Product implements Serializable, Cloneable {
|
|||||||
*/
|
*/
|
||||||
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date updatedTime;
|
private Date updatedTime;
|
||||||
|
|
||||||
|
private String tags;
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,6 @@ public class ProductServiceImpl extends AbstractService<Product> implements Prod
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ProductDTO findProductDTOById(Integer idProduct, Integer type) {
|
public ProductDTO findProductDTOById(Integer idProduct, Integer type) {
|
||||||
ProductDTO productDTO = productMapper.selectProductDTOById(idProduct, type);
|
return productMapper.selectProductDTOById(idProduct, type);
|
||||||
return productDTO;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
<result column="product_description" property="productDescription"></result>
|
<result column="product_description" property="productDescription"></result>
|
||||||
<result column="product_price" property="productPrice"></result>
|
<result column="product_price" property="productPrice"></result>
|
||||||
<result column="product_content" property="productContent"></result>
|
<result column="product_content" property="productContent"></result>
|
||||||
|
<result column="tags" property="tags"></result>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<insert id="insertProductContent">
|
<insert id="insertProductContent">
|
||||||
insert into forest_product_content(id_product,
|
insert into forest_product_content(id_product,
|
||||||
@ -27,7 +28,7 @@
|
|||||||
order by weights
|
order by weights
|
||||||
</select>
|
</select>
|
||||||
<select id="selectProductDTOById" resultMap="DTOResultMap">
|
<select id="selectProductDTOById" resultMap="DTOResultMap">
|
||||||
select id, product_title,
|
select id, product_title, tags,
|
||||||
<choose>
|
<choose>
|
||||||
<when test="type == 1">
|
<when test="type == 1">
|
||||||
product_content_html as product_content,
|
product_content_html as product_content,
|
||||||
|
Loading…
Reference in New Issue
Block a user