Commit 7d3e18ad by huluobin

update

parent 193fe9af
...@@ -1214,6 +1214,16 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper, ...@@ -1214,6 +1214,16 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper,
else { else {
//设置价格为服务价格 //设置价格为服务价格
scheduleServe.setLengthTime(baseServe.getServiceDuration()); scheduleServe.setLengthTime(baseServe.getServiceDuration());
//款式名称
scheduleServe.setProduceName(null);
//款式图片
scheduleServe.setProducePicturePath(null);
//款式原价
scheduleServe.setProduceBargainPrice(null);
//款式现价
scheduleServe.setProduceCurrentPrice(null);
//款式id
scheduleServe.setProduceId(null);
} }
//款式做法 //款式做法
scheduleServe.setExplain(baseServe.getExplain()); scheduleServe.setExplain(baseServe.getExplain());
......
package com.gogirl.domain.order.serve; package com.gogirl.domain.order.serve;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import com.gogirl.domain.product.serve.BaseProduce; import com.gogirl.domain.product.serve.BaseProduce;
import com.gogirl.domain.product.serve.BaseServe; import com.gogirl.domain.product.serve.BaseServe;
...@@ -87,21 +84,26 @@ public class ScheduleServe implements Serializable { ...@@ -87,21 +84,26 @@ public class ScheduleServe implements Serializable {
@ApiModelProperty("样式名称") @ApiModelProperty("样式名称")
@TableField(strategy = FieldStrategy.IGNORED)
private String produceName; private String produceName;
@ApiModelProperty("服务数量") @ApiModelProperty("服务数量")
private Integer serveNumber; private Integer serveNumber;
@TableField(strategy = FieldStrategy.IGNORED)
@ApiModelProperty("预约款式id") @ApiModelProperty("预约款式id")
private Integer produceId; private Integer produceId;
@ApiModelProperty("款式当前价格") @ApiModelProperty("款式当前价格")
@TableField(strategy = FieldStrategy.IGNORED)
private BigDecimal produceCurrentPrice; private BigDecimal produceCurrentPrice;
@ApiModelProperty("款式特价") @ApiModelProperty("款式特价")
@TableField(strategy = FieldStrategy.IGNORED)
private BigDecimal produceBargainPrice; private BigDecimal produceBargainPrice;
@ApiModelProperty("款式图片地址") @ApiModelProperty("款式图片地址")
@TableField(strategy = FieldStrategy.IGNORED)
private String producePicturePath; private String producePicturePath;
/** /**
* 服务 * 服务
......
...@@ -249,7 +249,7 @@ ...@@ -249,7 +249,7 @@
where t1.is_enabled =1 where t1.is_enabled =1
and t2.id is not null and t2.id is not null
and t3.id is not null and t3.id is not null
order by distance order by distance,week_date,time_node
</select> </select>
<select id="queryTechnicianTimeNode" resultType="com.gogirl.dto.TechnicianTimeNode"> <select id="queryTechnicianTimeNode" resultType="com.gogirl.dto.TechnicianTimeNode">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment