parent
03bde76124
commit
5abf9f5aac
@ -0,0 +1,20 @@
|
||||
package com.mudu.entity.dto.response;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author dong
|
||||
* @since 2024/5/22 17:07
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("巡查任务检查项xxbh")
|
||||
public class RwzqUuidResponse {
|
||||
|
||||
/**
|
||||
* xxbh
|
||||
*/
|
||||
@ApiModelProperty("xxbh")
|
||||
private String xxbh;
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.mudu.mapper.ASafeRwzqMapper">
|
||||
|
||||
|
||||
<select id="getXcUuid" resultType="com.mudu.entity.dto.response.RwzqUuidResponse">
|
||||
SELECT xxbh
|
||||
FROM `a_safe_rwzq`
|
||||
where RWLX = 'WGXC'
|
||||
ORDER BY ZQJSSJ desc limit 1
|
||||
</select>
|
||||
<select id="getZcUuid" resultType="com.mudu.entity.dto.response.RwzqUuidResponse">
|
||||
|
||||
SELECT xxbh
|
||||
FROM `a_safe_rwzq`
|
||||
where RWLX = 'QYZC'
|
||||
ORDER BY ZQJSSJ desc limit 1
|
||||
</select>
|
||||
</mapper>
|
Loading…
Reference in new issue