mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-21 17:09:36 +08:00
工单历史数据
This commit is contained in:
parent
f533fb6455
commit
27906c83cc
@ -27,7 +27,22 @@ public class RepairHisController extends BaseController {
|
||||
private IRepairHisService repairHisService;
|
||||
|
||||
/**
|
||||
* 查询VIEW列表
|
||||
* pageNum:第几页
|
||||
* pageSize:每页数量
|
||||
* name:报修人姓名,模糊查询
|
||||
* tel:报修人电话,模糊查询
|
||||
* bxorder:工单编号,模糊查询
|
||||
* gztype:设备类型名称,模糊查询
|
||||
* gzname:设备名称,模糊查询
|
||||
* addr:地点,模糊查询
|
||||
* floor:楼层名称,模糊查询
|
||||
* fjh:房间号,模糊查询
|
||||
* wxrname:维修人姓名,模糊查询
|
||||
* wxrtel:维修人电话,模糊查询
|
||||
* desc:问题描述,模糊查询
|
||||
* <p>
|
||||
* beginTime : 工单创建日期范围;开始时间;格式示例 2024-08-22;成对出现
|
||||
* endTime : 工单创建日期范围;结束时间;格式示例 2024-08-25;成对出现
|
||||
*/
|
||||
@RequiresPermissions(value = {"repair:manage:operator"})
|
||||
@RequestMapping("list")
|
||||
@ -50,6 +65,15 @@ public class RepairHisController extends BaseController {
|
||||
return result(repairHisService.getRepairHisList(repairHis));
|
||||
}
|
||||
|
||||
/**
|
||||
* 工单历史数据 详情接口
|
||||
*
|
||||
* 返回工单数据
|
||||
* logs字段为工单处理日志
|
||||
*
|
||||
* @param bxid 工单id
|
||||
* @return
|
||||
*/
|
||||
@RequiresPermissions("repair:manage:operator")
|
||||
@RequestMapping("get")
|
||||
public R get(Long bxid) {
|
||||
|
@ -48,6 +48,8 @@
|
||||
<if test="name != null and name != ''"> AND name LIKE CONCAT('%', #{name}, '%')</if>
|
||||
<if test="tel != null and tel != ''"> AND tel LIKE CONCAT('%', #{tel}, '%')</if>
|
||||
<if test="bxorder != null and bxorder != ''"> AND bxorder LIKE CONCAT('%', #{bxorder}, '%')</if>
|
||||
<if test="gztype != null and gztype != ''"> AND gztype LIKE CONCAT('%', #{gztype}, '%')</if>
|
||||
<if test="gzname != null and gzname != ''"> AND gzname LIKE CONCAT('%', #{gzname}, '%')</if>
|
||||
<if test="addr != null and addr != ''"> AND addr LIKE CONCAT('%', #{addr}, '%')</if>
|
||||
<if test="floor != null and floor != ''"> AND floor LIKE CONCAT('%', #{floor}, '%')</if>
|
||||
<if test="fjh != null and fjh != ''"> AND fjh LIKE CONCAT('%', #{fjh}, '%')</if>
|
||||
|
@ -56,7 +56,7 @@
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<finalName>ics-demo</finalName>
|
||||
<finalName>shoot-hand</finalName>
|
||||
</build>
|
||||
|
||||
</project>
|
Loading…
x
Reference in New Issue
Block a user