黄远 5 vuotta sitten
vanhempi
commit
f65ca6e5f3

+ 23 - 0
lift-system-service/src/main/java/cn/com/ty/lift/system/mapper/UserInfoMapper.java

@@ -0,0 +1,23 @@
+package cn.com.ty.lift.system.mapper;
+
+import cn.com.ty.lift.system.entity.UserInfo;
+
+/**
+ * MyBatis Mapper 接口 - 表:user_info
+ * @since 2019-11-25 18:01:00
+ */
+public interface UserInfoMapper {
+	int deleteByPrimaryKey(Long userId);
+
+	int insert(UserInfo record);
+
+	int insertSelective(UserInfo record);
+
+	UserInfo selectByPrimaryKey(Long userId);
+
+	int updateByPrimaryKeySelective(UserInfo record);
+
+	int updateByPrimaryKeyWithBLOBs(UserInfo record);
+
+	int updateByPrimaryKey(UserInfo record);
+}