From d15bd49fd76e8b087389e0a9200e79abd736eea3 Mon Sep 17 00:00:00 2001 From: zjh <zjh@888> Date: 星期六, 15 六月 2024 10:40:00 +0800 Subject: [PATCH] zjh 本地 2024/06/15 --1 --- ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjCustomerMapper.java | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjCustomerMapper.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjCustomerMapper.java index 71975ce..d63ff8d 100644 --- a/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjCustomerMapper.java +++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjCustomerMapper.java @@ -6,7 +6,9 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ltkj.hosp.domain.TjCustomer; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.annotations.Update; /** * 瀹㈡埛淇℃伅Mapper鎺ュ彛 @@ -81,4 +83,8 @@ "SELECT a.firm_id cid FROM tj_order a WHERE a.user_id=#{cusId} ORDER BY a.order_id DESC LIMIT 1)" + " aa LEFT JOIN dict_comp b ON aa.cid=b.drug_manufacturer_id") String getCompNameByCusId(String cusId); + + + @Update("update tj_customer set card_id=#{cardId} where cus_id=#{cusId}") + void updateCardId(@Param("cusId") Long cusId,@Param("cardId") String cardId); } -- Gitblit v1.8.0