|
@@ -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);
|
|
|
+}
|