添加耗材
This commit is contained in:
parent
09bfa5bdec
commit
fd465c9fe7
|
|
@ -32,5 +32,7 @@ public interface TbUserShopMsgMapper {
|
||||||
|
|
||||||
@Select("select * from tb_user_shop_msg where shop_id=#{shopId}")
|
@Select("select * from tb_user_shop_msg where shop_id=#{shopId}")
|
||||||
TbUserShopMsg selectByShopId(@Param("shopId") String shopId);
|
TbUserShopMsg selectByShopId(@Param("shopId") String shopId);
|
||||||
|
|
||||||
|
TbUserShopMsg selectByShopIdAndOpenId(@Param("shopId") Integer shopId,@Param("openId") String openId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ import java.io.Serializable;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
public class TbUserShopMsg implements Serializable {
|
public class TbUserShopMsg implements Serializable {
|
||||||
|
private Integer id;
|
||||||
|
|
||||||
private Integer shopId;
|
private Integer shopId;
|
||||||
|
|
||||||
private String openId;
|
private String openId;
|
||||||
|
|
@ -18,6 +20,14 @@ public class TbUserShopMsg implements Serializable {
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
public Integer getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Integer id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
public Integer getShopId() {
|
public Integer getShopId() {
|
||||||
return shopId;
|
return shopId;
|
||||||
}
|
}
|
||||||
|
|
@ -65,4 +75,4 @@ public class TbUserShopMsg implements Serializable {
|
||||||
public void setUpdateTime(Date updateTime) {
|
public void setUpdateTime(Date updateTime) {
|
||||||
this.updateTime = updateTime;
|
this.updateTime = updateTime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -65,22 +65,16 @@ public class LoginService {
|
||||||
|
|
||||||
|
|
||||||
public Result wxBusinessLogin(String openId,String shopId){
|
public Result wxBusinessLogin(String openId,String shopId){
|
||||||
TbUserShopMsg shopMsg= tbUserShopMsgMapper.selectByPrimaryKey(Integer.valueOf(shopId));
|
TbUserShopMsg shopMsg= tbUserShopMsgMapper.selectByShopIdAndOpenId(Integer.valueOf(shopId),openId);
|
||||||
if(Objects.isNull(shopMsg)){
|
if(Objects.isNull(shopMsg)){
|
||||||
shopMsg=new TbUserShopMsg();
|
shopMsg=new TbUserShopMsg();
|
||||||
|
|
||||||
shopMsg.setShopId(Integer.valueOf(shopId));
|
shopMsg.setShopId(Integer.valueOf(shopId));
|
||||||
shopMsg.setOpenId(openId);
|
shopMsg.setOpenId(openId);
|
||||||
shopMsg.setCreateTime(new Date());
|
shopMsg.setCreateTime(new Date());
|
||||||
shopMsg.setStatus("1");
|
shopMsg.setStatus("1");
|
||||||
|
|
||||||
|
|
||||||
tbUserShopMsgMapper.insert(shopMsg);
|
tbUserShopMsgMapper.insert(shopMsg);
|
||||||
}else {
|
|
||||||
shopMsg.setOpenId(openId);
|
|
||||||
shopMsg.setUpdateTime(new Date());
|
|
||||||
tbUserShopMsgMapper.updateByPrimaryKey(shopMsg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 为商家绑定openid
|
// 为商家绑定openid
|
||||||
if (shopOpenIdMapper.countByOpenId(openId) == null) {
|
if (shopOpenIdMapper.countByOpenId(openId) == null) {
|
||||||
TbShopOpenId shopOpenId = new TbShopOpenId();
|
TbShopOpenId shopOpenId = new TbShopOpenId();
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.chaozhanggui.system.cashierservice.dao.TbUserShopMsgMapper">
|
<mapper namespace="com.chaozhanggui.system.cashierservice.dao.TbUserShopMsgMapper">
|
||||||
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
||||||
<id column="shop_id" jdbcType="INTEGER" property="shopId" />
|
<id column="id" jdbcType="INTEGER" property="id" />
|
||||||
|
<result column="shop_id" jdbcType="INTEGER" property="shopId" />
|
||||||
<result column="open_id" jdbcType="VARCHAR" property="openId" />
|
<result column="open_id" jdbcType="VARCHAR" property="openId" />
|
||||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||||
<result column="status" jdbcType="VARCHAR" property="status" />
|
<result column="status" jdbcType="VARCHAR" property="status" />
|
||||||
|
|
@ -10,29 +11,32 @@
|
||||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
shop_id, open_id, remark, status, create_time, update_time
|
id, shop_id, open_id, remark, status, create_time, update_time
|
||||||
</sql>
|
</sql>
|
||||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List" />
|
<include refid="Base_Column_List" />
|
||||||
from tb_user_shop_msg
|
from tb_user_shop_msg
|
||||||
where shop_id = #{shopId,jdbcType=INTEGER}
|
where id = #{id,jdbcType=INTEGER}
|
||||||
</select>
|
</select>
|
||||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||||
delete from tb_user_shop_msg
|
delete from tb_user_shop_msg
|
||||||
where shop_id = #{shopId,jdbcType=INTEGER}
|
where id = #{id,jdbcType=INTEGER}
|
||||||
</delete>
|
</delete>
|
||||||
<insert id="insert" parameterType="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
<insert id="insert" parameterType="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
||||||
insert into tb_user_shop_msg (shop_id, open_id, remark,
|
insert into tb_user_shop_msg (id, shop_id, open_id,
|
||||||
status, create_time, update_time
|
remark, status, create_time,
|
||||||
)
|
update_time)
|
||||||
values (#{shopId,jdbcType=INTEGER}, #{openId,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR},
|
values (#{id,jdbcType=INTEGER}, #{shopId,jdbcType=INTEGER}, #{openId,jdbcType=VARCHAR},
|
||||||
#{status,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
|
#{remark,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
|
||||||
)
|
#{updateTime,jdbcType=TIMESTAMP})
|
||||||
</insert>
|
</insert>
|
||||||
<insert id="insertSelective" parameterType="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
<insert id="insertSelective" parameterType="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
||||||
insert into tb_user_shop_msg
|
insert into tb_user_shop_msg
|
||||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="id != null">
|
||||||
|
id,
|
||||||
|
</if>
|
||||||
<if test="shopId != null">
|
<if test="shopId != null">
|
||||||
shop_id,
|
shop_id,
|
||||||
</if>
|
</if>
|
||||||
|
|
@ -53,6 +57,9 @@
|
||||||
</if>
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="id != null">
|
||||||
|
#{id,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
<if test="shopId != null">
|
<if test="shopId != null">
|
||||||
#{shopId,jdbcType=INTEGER},
|
#{shopId,jdbcType=INTEGER},
|
||||||
</if>
|
</if>
|
||||||
|
|
@ -76,6 +83,9 @@
|
||||||
<update id="updateByPrimaryKeySelective" parameterType="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
<update id="updateByPrimaryKeySelective" parameterType="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
||||||
update tb_user_shop_msg
|
update tb_user_shop_msg
|
||||||
<set>
|
<set>
|
||||||
|
<if test="shopId != null">
|
||||||
|
shop_id = #{shopId,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
<if test="openId != null">
|
<if test="openId != null">
|
||||||
open_id = #{openId,jdbcType=VARCHAR},
|
open_id = #{openId,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
|
|
@ -92,15 +102,20 @@
|
||||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||||
</if>
|
</if>
|
||||||
</set>
|
</set>
|
||||||
where shop_id = #{shopId,jdbcType=INTEGER}
|
where id = #{id,jdbcType=INTEGER}
|
||||||
</update>
|
</update>
|
||||||
<update id="updateByPrimaryKey" parameterType="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
<update id="updateByPrimaryKey" parameterType="com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg">
|
||||||
update tb_user_shop_msg
|
update tb_user_shop_msg
|
||||||
set open_id = #{openId,jdbcType=VARCHAR},
|
set shop_id = #{shopId,jdbcType=INTEGER},
|
||||||
|
open_id = #{openId,jdbcType=VARCHAR},
|
||||||
remark = #{remark,jdbcType=VARCHAR},
|
remark = #{remark,jdbcType=VARCHAR},
|
||||||
status = #{status,jdbcType=VARCHAR},
|
status = #{status,jdbcType=VARCHAR},
|
||||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||||
update_time = #{updateTime,jdbcType=TIMESTAMP}
|
update_time = #{updateTime,jdbcType=TIMESTAMP}
|
||||||
where shop_id = #{shopId,jdbcType=INTEGER}
|
where id = #{id,jdbcType=INTEGER}
|
||||||
</update>
|
</update>
|
||||||
</mapper>
|
|
||||||
|
<select id="selectByShopIdAndOpenId" resultMap="BaseResultMap">
|
||||||
|
select * from tb_user_shop_msg where shop_id=#{shopId} and open_id=#{openId}
|
||||||
|
</select>
|
||||||
|
</mapper>
|
||||||
Loading…
Reference in New Issue