|
@@ -0,0 +1,96 @@
|
|
|
+package com.platform.yijia.dao;
|
|
|
+
|
|
|
+import com.platform.yijia.pojo.AppUserInfo;
|
|
|
+import com.platform.yijia.pojo.AppUserInfoExample;
|
|
|
+import java.util.List;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
+
|
|
|
+public interface AppUserInfoMapper {
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ long countByExample(AppUserInfoExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int deleteByExample(AppUserInfoExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int deleteByPrimaryKey(Integer userId);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int insert(AppUserInfo record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int insertSelective(AppUserInfo record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ List<AppUserInfo> selectByExample(AppUserInfoExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ AppUserInfo selectByPrimaryKey(Integer userId);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int updateByExampleSelective(@Param("record") AppUserInfo record, @Param("example") AppUserInfoExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int updateByExample(@Param("record") AppUserInfo record, @Param("example") AppUserInfoExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int updateByPrimaryKeySelective(AppUserInfo record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table app_user_info
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int updateByPrimaryKey(AppUserInfo record);
|
|
|
+}
|