一日流程评估时间过滤
This commit is contained in:
@ -149,11 +149,11 @@ public class ByDayflowassessment extends BaseEntity {
|
||||
@Excel(name = "执行人")
|
||||
private Long createUserid;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Excel(name = "创建时间")
|
||||
private Date createTime;
|
||||
// /**
|
||||
// * 创建时间
|
||||
// */
|
||||
// @Excel(name = "创建时间")
|
||||
// private Date createTime;
|
||||
|
||||
public Double getBjpjf() {
|
||||
return bjpjf;
|
||||
|
@ -107,6 +107,12 @@
|
||||
<if test="kfcs != null ">and d.kfcs = #{kfcs}</if>
|
||||
<if test="pgdx != null ">and d.pgdx = #{pgdx}</if>
|
||||
<if test="createUserid != null ">and d.create_userid = #{createUserid}</if>
|
||||
<if test="beginTime != null and beginTime != ''"><!-- 开始时间检索 -->
|
||||
AND date_format(d.create_time,'%y%m%d') >= date_format(#{beginTime},'%y%m%d')
|
||||
</if>
|
||||
<if test="endTime != null and endTime != ''"><!-- 结束时间检索 -->
|
||||
AND date_format(d.create_time,'%y%m%d') <= date_format(#{endTime},'%y%m%d')
|
||||
</if>
|
||||
<!-- 数据范围过滤 -->
|
||||
${dataScope}
|
||||
order by d.classid
|
||||
|
Reference in New Issue
Block a user