字段修复

This commit is contained in:
杨旭 2025-04-20 10:46:48 +08:00
parent 6c74c399aa
commit 6a927d5093
3 changed files with 7 additions and 1 deletions

View File

@ -42,6 +42,11 @@ public class CueOrderVO extends BaseVO implements Serializable {
*/ */
@Schema(description = "商品名称") @Schema(description = "商品名称")
private String productName; private String productName;
/**
* 商品图片
*/
@Schema(description = "商品图片")
private String productImages;
/** /**
* 价格 * 价格
*/ */

View File

@ -30,6 +30,7 @@
<result property="finallyTime" column="finally_time"/> <result property="finallyTime" column="finally_time"/>
<result property="mallOrderId" column="mall_order_id"/> <result property="mallOrderId" column="mall_order_id"/>
<result property="sendNumber" column="send_number"/> <result property="sendNumber" column="send_number"/>
<result property="productImages" column="product_images"/>
</resultMap> </resultMap>
<sql id="Vo_Column_List"> <sql id="Vo_Column_List">

View File

@ -1344,7 +1344,7 @@
update update
`order` `order`
set set
`cue_order` = #{status} `status` = #{status}
where where
order_id = #{orderId} order_id = #{orderId}
</update> </update>