名片数据错误修改
This commit is contained in:
parent
79d7d24a16
commit
42d48937c6
20
pom.xml
20
pom.xml
@ -113,16 +113,12 @@
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cn.com.tenlion</groupId>
|
||||
<artifactId>interface-building-pictures</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cn.com.tenlion</groupId>
|
||||
<artifactId>module-building-pictures</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-beans</artifactId>
|
||||
<version>5.3.3</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@ -130,6 +126,14 @@
|
||||
<artifactId>module-material-store</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cn.com.tenlion</groupId>
|
||||
<artifactId>module-building-pictures</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
@ -4,6 +4,7 @@ import cn.com.tenlion.materialstore.pojo.dtos.materialdata.MaterialDataDTO;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @ClassName: UserColumnDataDTO
|
||||
|
@ -398,7 +398,7 @@ public class TemplatePersonServiceImpl extends DefaultBaseService implements ITe
|
||||
@Override
|
||||
public TemplatePersonDTO get(String templatePersonId) {
|
||||
Map<String, Object> params = super.getHashMap(2);
|
||||
params.put("templatePersonId", templatePersonId);
|
||||
params.put("cardPersonId", templatePersonId);
|
||||
return get(params);
|
||||
}
|
||||
|
||||
@ -410,7 +410,7 @@ public class TemplatePersonServiceImpl extends DefaultBaseService implements ITe
|
||||
@Override
|
||||
public TemplatePersonBO getBO(String templatePersonId) {
|
||||
Map<String, Object> params = super.getHashMap(2);
|
||||
params.put("templatePersonId", templatePersonId);
|
||||
params.put("cardPersonId", templatePersonId);
|
||||
return getBO(params);
|
||||
}
|
||||
|
||||
@ -422,7 +422,7 @@ public class TemplatePersonServiceImpl extends DefaultBaseService implements ITe
|
||||
@Override
|
||||
public TemplatePersonPO getPO(String templatePersonId) {
|
||||
Map<String, Object> params = super.getHashMap(2);
|
||||
params.put("templatePersonId", templatePersonId);
|
||||
params.put("cardPersonId", templatePersonId);
|
||||
return getPO(params);
|
||||
}
|
||||
|
||||
|
@ -200,13 +200,12 @@
|
||||
t1.is_main,
|
||||
t1.card_width,
|
||||
t1.card_height,
|
||||
t1.qrcode_id,
|
||||
1
|
||||
t1.qrcode_id
|
||||
FROM
|
||||
card_template_person t1
|
||||
WHERE
|
||||
t1.is_delete = 0
|
||||
AND card_person_id = #{cardPersonId}
|
||||
AND t1.card_person_id = #{cardPersonId}
|
||||
</select>
|
||||
|
||||
<!-- 详情 -->
|
||||
|
Loading…
Reference in New Issue
Block a user