Commit 1d916243 by huluobin

测试环境fix

parent d7f780c4
......@@ -47,6 +47,7 @@ import com.gogirl.infrastructure.subscribe.SubscribeService;
import com.gogirl.infrastructure.util.CheckUtil;
import com.gogirl.infrastructure.util.SessionUtils;
import com.gogirl.shared.member.order.command.CreateCommentCommand;
import com.gogirl.shared.member.order.command.OrderCommentCommand;
import com.gogirl.shared.order.serve.query.qry.ordermanage.ListOrderQuery;
import com.gogirl.shared.user.command.ConsumerCommand;
import com.google.common.collect.Lists;
......
package com.gogirl.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
@Data
public class OrderCommentCommand {
private Integer id;
@ApiModelProperty("订单id")
private Integer orderId;
@ApiModelProperty("服务id")
private Integer orderServeId;
@ApiModelProperty("评论用户id")
private Integer userId;
@ApiModelProperty("等级")
private Integer level;
@ApiModelProperty("备注")
private String remark;
@ApiModelProperty("图片地址")
private String picturePath;
@ApiModelProperty("便签贴")
private String labelSticker;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@ApiModelProperty("完成时间")
private Date finishTime;
@ApiModelProperty("创建时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime;
@ApiModelProperty("状态 1-未评价 2-以评价")
private Integer status;
@ApiModelProperty("技师id 关联store_technician")
private Integer technicianId;
}
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