浏览代码

少上传文件

chenminghua 2 年之前
父节点
当前提交
c187deef28

+ 96 - 0
src/main/java/com/gyee/frame/mapper/auto/MisdailydataMapper.java

@@ -0,0 +1,96 @@
+package com.gyee.frame.mapper.auto;
+
+import com.gyee.frame.model.auto.Misdailydata;
+import com.gyee.frame.model.auto.MisdailydataExample;
+import java.util.List;
+import org.apache.ibatis.annotations.Param;
+
+public interface MisdailydataMapper {
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    long countByExample(MisdailydataExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    int deleteByExample(MisdailydataExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    int deleteByPrimaryKey(String id);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    int insert(Misdailydata record);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    int insertSelective(Misdailydata record);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    List<Misdailydata> selectByExample(MisdailydataExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    Misdailydata selectByPrimaryKey(String id);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    int updateByExampleSelective(@Param("record") Misdailydata record, @Param("example") MisdailydataExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    int updateByExample(@Param("record") Misdailydata record, @Param("example") MisdailydataExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    int updateByPrimaryKeySelective(Misdailydata record);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table MISDAILYDATA
+     *
+     * @mbg.generated
+     */
+    int updateByPrimaryKey(Misdailydata record);
+}

文件差异内容过多而无法显示
+ 3281 - 0
src/main/java/com/gyee/frame/model/auto/Misdailydata.java


文件差异内容过多而无法显示
+ 6283 - 0
src/main/java/com/gyee/frame/model/auto/MisdailydataExample.java


+ 7 - 4
src/main/resources/mybatis-generator.xml

@@ -57,6 +57,12 @@
                 userId="nxfdprod"
                 password="gdnxfd123">
         </jdbcConnection>
+        <!--<jdbcConnection-->
+                <!--driverClass="oracle.jdbc.driver.OracleDriver"-->
+                <!--connectionURL="jdbc:oracle:thin:@10.155.32.7:1521:ORCL"-->
+                <!--userId="gyee"-->
+                <!--password="FRWIND">-->
+        <!--</jdbcConnection>-->
 
 <!--                <jdbcConnection-->
 <!--                        driverClass="com.microsoft.sqlserver.jdbc.SQLServerDriver"-->
@@ -109,9 +115,6 @@
 <!--        <table tableName='StopAnalysis' domainObjectName='StopAnalysis'/>-->
 <!--        <table tableName='StopAnalysismain' domainObjectName='StopAnalysismain'/>-->
 <!--        <table tableName='StopAnalysismainVo' domainObjectName='StopAnalysismainVo'/>-->
-        <table tableName='Dailyratingmain' domainObjectName='Dailyratingmain'/>
-
-
-
+        <table tableName='MISDAILYDATA' domainObjectName='Misdailydata'/>
     </context>
 </generatorConfiguration>

文件差异内容过多而无法显示
+ 1760 - 0
src/main/resources/mybatis/auto/MisdailydataMapper.xml