临时调班
This commit is contained in:
parent
3702e8d175
commit
69d06e22b3
|
@ -2,6 +2,10 @@ package com.ruoyi.yh.shift.domain;
|
|||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author wjh
|
||||
|
@ -13,4 +17,8 @@ public class ShiftQuery extends ShiftVO{
|
|||
@ApiModelProperty("用户名称")
|
||||
private String userName;
|
||||
|
||||
@ApiModelProperty("调班时间范围")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private List<LocalDateTime> shiftTimeRange;
|
||||
|
||||
}
|
||||
|
|
|
@ -53,6 +53,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="query.userName != null and query.userName != ''">
|
||||
and su.nick_name like concat('%', #{query.userName}, '%')
|
||||
</if>
|
||||
<if test="query.shiftTimeRange != null and query.shiftTimeRange.size() > 1">
|
||||
and bs.shift_time_end >= #{query.shiftTimeRange[0]}
|
||||
and bs.shift_time_start <= #{query.shiftTimeRange[1]}
|
||||
</if>
|
||||
${query.params.dataScope}
|
||||
</sql>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user