设备接入联调
This commit is contained in:
parent
c0d6212177
commit
8b176c956b
|
|
@ -95,6 +95,12 @@ public class TbBdRecord implements Serializable {
|
|||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 申请时间传参
|
||||
*/
|
||||
@ApiModelProperty(value="申请时间")
|
||||
private String applyTime;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -46,8 +46,8 @@
|
|||
<if test="relUser != null and relUser != ''">
|
||||
and tbr.rel_user like concat('%',#{relUser},'%')
|
||||
</if>
|
||||
<if test="createTime != null and createTime != ''">
|
||||
and DATE_FORMAT(tbr.create_time, '%Y-%m-%d') = #{createTime}
|
||||
<if test="applyTime != null and applyTime != ''">
|
||||
and DATE_FORMAT(tbr.create_time, '%Y-%m-%d') = #{applyTime}
|
||||
</if>
|
||||
GROUP BY tbr.id
|
||||
</select>
|
||||
|
|
|
|||
Loading…
Reference in New Issue