12 changed files with 89 additions and 20 deletions
@ -0,0 +1,23 @@
|
||||
package com.biutag.supervision.constants.enums; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import lombok.Getter; |
||||
|
||||
/** |
||||
* |
||||
* @author wxc |
||||
* @date 2024/10/22 |
||||
*/ |
||||
@Getter |
||||
@AllArgsConstructor |
||||
public enum InitialPetition { |
||||
|
||||
THE_FIRST("1", "初访"), |
||||
|
||||
REPEAT("2", "重访"); |
||||
|
||||
private String value; |
||||
|
||||
public String label; |
||||
|
||||
} |
||||
@ -0,0 +1,16 @@
|
||||
package com.biutag.supervision.pojo.dto; |
||||
|
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
/** |
||||
* @author wxc |
||||
* @date 2024/10/22 |
||||
*/ |
||||
@Setter |
||||
@Getter |
||||
public class ModelClueDepartDto { |
||||
|
||||
private String departId; |
||||
|
||||
} |
||||
@ -0,0 +1,16 @@
|
||||
<?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.biutag.supervision.mapper.ModelClueMapper"> |
||||
|
||||
<select id="queryPage" resultType="com.biutag.supervision.pojo.model.ModelClueModel"> |
||||
select *, m.model_name, d1.short_name involve_parent_depart_name from model_clue mc |
||||
left join model m on mc.model_id = m.id |
||||
left join sup_depart d on mc.involve_depart_id = d.id |
||||
left join sup_depart d1 on d.pid = d1.id |
||||
${ew.getCustomSqlSegment} |
||||
</select> |
||||
|
||||
|
||||
</mapper> |
||||
Binary file not shown.
Loading…
Reference in new issue