快捷消息回复返回报错修改
This commit is contained in:
		
							parent
							
								
									4d5c1b159c
								
							
						
					
					
						commit
						82ae4f6d66
					
				| 
						 | 
					@ -1,6 +1,7 @@
 | 
				
			||||||
package com.bonus.material.reply.entity;
 | 
					package com.bonus.material.reply.entity;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import com.alibaba.fastjson2.annotation.JSONField;
 | 
					import com.alibaba.fastjson2.annotation.JSONField;
 | 
				
			||||||
 | 
					import com.fasterxml.jackson.annotation.JsonFormat;
 | 
				
			||||||
import io.swagger.annotations.ApiModelProperty;
 | 
					import io.swagger.annotations.ApiModelProperty;
 | 
				
			||||||
import lombok.Data;
 | 
					import lombok.Data;
 | 
				
			||||||
import org.springframework.format.annotation.DateTimeFormat;
 | 
					import org.springframework.format.annotation.DateTimeFormat;
 | 
				
			||||||
| 
						 | 
					@ -31,14 +32,14 @@ public class BmReply {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @ApiModelProperty(value = "创建时间")
 | 
					    @ApiModelProperty(value = "创建时间")
 | 
				
			||||||
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
 | 
					    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
 | 
				
			||||||
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
 | 
					    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
 | 
				
			||||||
    private Date createrTime;
 | 
					    private Date createrTime;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @ApiModelProperty(value = "修改人")
 | 
					    @ApiModelProperty(value = "修改人")
 | 
				
			||||||
    private Integer updater;
 | 
					    private Integer updater;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @ApiModelProperty(value = "修改时间")
 | 
					    @ApiModelProperty(value = "修改时间")
 | 
				
			||||||
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
 | 
					    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
 | 
				
			||||||
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
 | 
					    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
 | 
				
			||||||
    private Date updaterTime;
 | 
					    private Date updaterTime;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -53,7 +53,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 | 
				
			||||||
                AND br.creater_time BETWEEN CONCAT(#{startTime}, ' 00:00:00') AND CONCAT(#{endTime}, ' 23:59:59')
 | 
					                AND br.creater_time BETWEEN CONCAT(#{startTime}, ' 00:00:00') AND CONCAT(#{endTime}, ' 23:59:59')
 | 
				
			||||||
            </if>
 | 
					            </if>
 | 
				
			||||||
            <if test="replyCom != null">
 | 
					            <if test="replyCom != null">
 | 
				
			||||||
                AND reply_com = #{replyCom},
 | 
					                AND reply_com = #{replyCom}
 | 
				
			||||||
            </if>
 | 
					            </if>
 | 
				
			||||||
        </where>
 | 
					        </where>
 | 
				
			||||||
    </select>
 | 
					    </select>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue