From b3d2e35be3a164694a959e4f6a027a38b98372e8 Mon Sep 17 00:00:00 2001 From: YuanYe <418471657@qq.com> Date: Fri, 28 Feb 2025 17:51:13 +0800 Subject: [PATCH] 1 --- .../com/cg/dao/BsUserStudentRelMapper.java | 117 ++ .../com/cg/dao/BsUserStudentRelMapperExt.java | 7 + .../cg/dao/BsUserStudentRelSqlProvider.java | 304 ++++ .../com/cg/dao/StudentItemGradeMapper.java | 142 ++ .../com/cg/dao/StudentItemGradeMapperExt.java | 7 + .../cg/dao/StudentItemGradeSqlProvider.java | 388 ++++++ .../java/com/cg/dao/StudentItemMapper.java | 125 ++ .../java/com/cg/dao/StudentItemMapperExt.java | 7 + .../com/cg/dao/StudentItemSqlProvider.java | 332 +++++ .../java/com/cg/entity/BsUserStudentRel.java | 209 +++ .../cg/entity/BsUserStudentRelExample.java | 853 ++++++++++++ .../main/java/com/cg/entity/StudentItem.java | 241 ++++ .../com/cg/entity/StudentItemExample.java | 983 +++++++++++++ .../java/com/cg/entity/StudentItemGrade.java | 306 +++++ .../cg/entity/StudentItemGradeExample.java | 1224 +++++++++++++++++ 15 files changed, 5245 insertions(+) create mode 100644 service/src/main/java/com/cg/dao/BsUserStudentRelMapper.java create mode 100644 service/src/main/java/com/cg/dao/BsUserStudentRelMapperExt.java create mode 100644 service/src/main/java/com/cg/dao/BsUserStudentRelSqlProvider.java create mode 100644 service/src/main/java/com/cg/dao/StudentItemGradeMapper.java create mode 100644 service/src/main/java/com/cg/dao/StudentItemGradeMapperExt.java create mode 100644 service/src/main/java/com/cg/dao/StudentItemGradeSqlProvider.java create mode 100644 service/src/main/java/com/cg/dao/StudentItemMapper.java create mode 100644 service/src/main/java/com/cg/dao/StudentItemMapperExt.java create mode 100644 service/src/main/java/com/cg/dao/StudentItemSqlProvider.java create mode 100644 service/src/main/java/com/cg/entity/BsUserStudentRel.java create mode 100644 service/src/main/java/com/cg/entity/BsUserStudentRelExample.java create mode 100644 service/src/main/java/com/cg/entity/StudentItem.java create mode 100644 service/src/main/java/com/cg/entity/StudentItemExample.java create mode 100644 service/src/main/java/com/cg/entity/StudentItemGrade.java create mode 100644 service/src/main/java/com/cg/entity/StudentItemGradeExample.java diff --git a/service/src/main/java/com/cg/dao/BsUserStudentRelMapper.java b/service/src/main/java/com/cg/dao/BsUserStudentRelMapper.java new file mode 100644 index 0000000..745fea5 --- /dev/null +++ b/service/src/main/java/com/cg/dao/BsUserStudentRelMapper.java @@ -0,0 +1,117 @@ +package com.cg.dao; + +import com.cg.entity.BsUserStudentRel; +import com.cg.entity.BsUserStudentRelExample; +import java.util.List; +import org.apache.ibatis.annotations.Delete; +import org.apache.ibatis.annotations.DeleteProvider; +import org.apache.ibatis.annotations.Insert; +import org.apache.ibatis.annotations.InsertProvider; +import org.apache.ibatis.annotations.Options; +import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Result; +import org.apache.ibatis.annotations.Results; +import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.annotations.SelectProvider; +import org.apache.ibatis.annotations.Update; +import org.apache.ibatis.annotations.UpdateProvider; +import org.apache.ibatis.type.JdbcType; +import org.springframework.stereotype.Repository; + +/** + * + * 代码由工具生成,请勿修改!!! + * 如果需要扩展请在其父类进行扩展 + * + **/ +@Repository +public interface BsUserStudentRelMapper extends BsUserStudentRelMapperExt { + @SelectProvider(type=BsUserStudentRelSqlProvider.class, method="countByExample") + long countByExample(BsUserStudentRelExample example); + + @DeleteProvider(type=BsUserStudentRelSqlProvider.class, method="deleteByExample") + int deleteByExample(BsUserStudentRelExample example); + + @Delete({ + "delete from bs_user_student_rel", + "where id = #{id,jdbcType=INTEGER}" + }) + int deleteByPrimaryKey(Integer id); + + @Insert({ + "insert into bs_user_student_rel (user_id, student_id, ", + "relationship, create_time, ", + "update_time, `status`, ", + "ext_1, ext_2, ext_3)", + "values (#{userId,jdbcType=BIGINT}, #{studentId,jdbcType=BIGINT}, ", + "#{relationship,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ", + "#{updateTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ", + "#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" + }) + @Options(useGeneratedKeys=true,keyProperty="id") + int insert(BsUserStudentRel record); + + @InsertProvider(type=BsUserStudentRelSqlProvider.class, method="insertSelective") + @Options(useGeneratedKeys=true,keyProperty="id") + int insertSelective(BsUserStudentRel record); + + @SelectProvider(type=BsUserStudentRelSqlProvider.class, method="selectByExample") + @Results({ + @Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), + @Result(column="user_id", property="userId", jdbcType=JdbcType.BIGINT), + @Result(column="student_id", property="studentId", jdbcType=JdbcType.BIGINT), + @Result(column="relationship", property="relationship", jdbcType=JdbcType.INTEGER), + @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), + @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) + }) + List selectByExample(BsUserStudentRelExample example); + + @Select({ + "select", + "id, user_id, student_id, relationship, create_time, update_time, `status`, ext_1, ", + "ext_2, ext_3", + "from bs_user_student_rel", + "where id = #{id,jdbcType=INTEGER}" + }) + @Results({ + @Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), + @Result(column="user_id", property="userId", jdbcType=JdbcType.BIGINT), + @Result(column="student_id", property="studentId", jdbcType=JdbcType.BIGINT), + @Result(column="relationship", property="relationship", jdbcType=JdbcType.INTEGER), + @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), + @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) + }) + BsUserStudentRel selectByPrimaryKey(Integer id); + + @UpdateProvider(type=BsUserStudentRelSqlProvider.class, method="updateByExampleSelective") + int updateByExampleSelective(@Param("record") BsUserStudentRel record, @Param("example") BsUserStudentRelExample example); + + @UpdateProvider(type=BsUserStudentRelSqlProvider.class, method="updateByExample") + int updateByExample(@Param("record") BsUserStudentRel record, @Param("example") BsUserStudentRelExample example); + + @UpdateProvider(type=BsUserStudentRelSqlProvider.class, method="updateByPrimaryKeySelective") + int updateByPrimaryKeySelective(BsUserStudentRel record); + + @Update({ + "update bs_user_student_rel", + "set user_id = #{userId,jdbcType=BIGINT},", + "student_id = #{studentId,jdbcType=BIGINT},", + "relationship = #{relationship,jdbcType=INTEGER},", + "create_time = #{createTime,jdbcType=TIMESTAMP},", + "update_time = #{updateTime,jdbcType=TIMESTAMP},", + "`status` = #{status,jdbcType=INTEGER},", + "ext_1 = #{ext1,jdbcType=VARCHAR},", + "ext_2 = #{ext2,jdbcType=VARCHAR},", + "ext_3 = #{ext3,jdbcType=VARCHAR}", + "where id = #{id,jdbcType=INTEGER}" + }) + int updateByPrimaryKey(BsUserStudentRel record); +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/dao/BsUserStudentRelMapperExt.java b/service/src/main/java/com/cg/dao/BsUserStudentRelMapperExt.java new file mode 100644 index 0000000..a00a0c0 --- /dev/null +++ b/service/src/main/java/com/cg/dao/BsUserStudentRelMapperExt.java @@ -0,0 +1,7 @@ +package com.cg.dao; + +/** + * mapper扩展类 + */ +public interface BsUserStudentRelMapperExt { +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/dao/BsUserStudentRelSqlProvider.java b/service/src/main/java/com/cg/dao/BsUserStudentRelSqlProvider.java new file mode 100644 index 0000000..0baa167 --- /dev/null +++ b/service/src/main/java/com/cg/dao/BsUserStudentRelSqlProvider.java @@ -0,0 +1,304 @@ +package com.cg.dao; + +import com.cg.entity.BsUserStudentRel; +import com.cg.entity.BsUserStudentRelExample.Criteria; +import com.cg.entity.BsUserStudentRelExample.Criterion; +import com.cg.entity.BsUserStudentRelExample; +import java.util.List; +import java.util.Map; +import org.apache.ibatis.jdbc.SQL; + +public class BsUserStudentRelSqlProvider { + + public String countByExample(BsUserStudentRelExample example) { + SQL sql = new SQL(); + sql.SELECT("count(*)").FROM("bs_user_student_rel"); + applyWhere(sql, example, false); + return sql.toString(); + } + + public String deleteByExample(BsUserStudentRelExample example) { + SQL sql = new SQL(); + sql.DELETE_FROM("bs_user_student_rel"); + applyWhere(sql, example, false); + return sql.toString(); + } + + public String insertSelective(BsUserStudentRel record) { + SQL sql = new SQL(); + sql.INSERT_INTO("bs_user_student_rel"); + + if (record.getUserId() != null) { + sql.VALUES("user_id", "#{userId,jdbcType=BIGINT}"); + } + + if (record.getStudentId() != null) { + sql.VALUES("student_id", "#{studentId,jdbcType=BIGINT}"); + } + + if (record.getRelationship() != null) { + sql.VALUES("relationship", "#{relationship,jdbcType=INTEGER}"); + } + + if (record.getCreateTime() != null) { + sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.VALUES("update_time", "#{updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); + } + + return sql.toString(); + } + + public String selectByExample(BsUserStudentRelExample example) { + SQL sql = new SQL(); + if (example != null && example.isDistinct()) { + sql.SELECT_DISTINCT("id"); + } else { + sql.SELECT("id"); + } + sql.SELECT("user_id"); + sql.SELECT("student_id"); + sql.SELECT("relationship"); + sql.SELECT("create_time"); + sql.SELECT("update_time"); + sql.SELECT("`status`"); + sql.SELECT("ext_1"); + sql.SELECT("ext_2"); + sql.SELECT("ext_3"); + sql.FROM("bs_user_student_rel"); + applyWhere(sql, example, false); + + if (example != null && example.getOrderByClause() != null) { + sql.ORDER_BY(example.getOrderByClause()); + } + + return sql.toString(); + } + + public String updateByExampleSelective(Map parameter) { + BsUserStudentRel record = (BsUserStudentRel) parameter.get("record"); + BsUserStudentRelExample example = (BsUserStudentRelExample) parameter.get("example"); + + SQL sql = new SQL(); + sql.UPDATE("bs_user_student_rel"); + + if (record.getId() != null) { + sql.SET("id = #{record.id,jdbcType=INTEGER}"); + } + + if (record.getUserId() != null) { + sql.SET("user_id = #{record.userId,jdbcType=BIGINT}"); + } + + if (record.getStudentId() != null) { + sql.SET("student_id = #{record.studentId,jdbcType=BIGINT}"); + } + + if (record.getRelationship() != null) { + sql.SET("relationship = #{record.relationship,jdbcType=INTEGER}"); + } + + if (record.getCreateTime() != null) { + sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); + } + + applyWhere(sql, example, true); + return sql.toString(); + } + + public String updateByExample(Map parameter) { + SQL sql = new SQL(); + sql.UPDATE("bs_user_student_rel"); + + sql.SET("id = #{record.id,jdbcType=INTEGER}"); + sql.SET("user_id = #{record.userId,jdbcType=BIGINT}"); + sql.SET("student_id = #{record.studentId,jdbcType=BIGINT}"); + sql.SET("relationship = #{record.relationship,jdbcType=INTEGER}"); + sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); + sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); + sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); + sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); + sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); + sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); + + BsUserStudentRelExample example = (BsUserStudentRelExample) parameter.get("example"); + applyWhere(sql, example, true); + return sql.toString(); + } + + public String updateByPrimaryKeySelective(BsUserStudentRel record) { + SQL sql = new SQL(); + sql.UPDATE("bs_user_student_rel"); + + if (record.getUserId() != null) { + sql.SET("user_id = #{userId,jdbcType=BIGINT}"); + } + + if (record.getStudentId() != null) { + sql.SET("student_id = #{studentId,jdbcType=BIGINT}"); + } + + if (record.getRelationship() != null) { + sql.SET("relationship = #{relationship,jdbcType=INTEGER}"); + } + + if (record.getCreateTime() != null) { + sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.SET("update_time = #{updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.SET("`status` = #{status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); + } + + sql.WHERE("id = #{id,jdbcType=INTEGER}"); + + return sql.toString(); + } + + protected void applyWhere(SQL sql, BsUserStudentRelExample example, boolean includeExamplePhrase) { + if (example == null) { + return; + } + + String parmPhrase1; + String parmPhrase1_th; + String parmPhrase2; + String parmPhrase2_th; + String parmPhrase3; + String parmPhrase3_th; + if (includeExamplePhrase) { + parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; + parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; + parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; + parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; + parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; + parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; + } else { + parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; + parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; + parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; + parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; + parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; + parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; + } + + StringBuilder sb = new StringBuilder(); + List oredCriteria = example.getOredCriteria(); + boolean firstCriteria = true; + for (int i = 0; i < oredCriteria.size(); i++) { + Criteria criteria = oredCriteria.get(i); + if (criteria.isValid()) { + if (firstCriteria) { + firstCriteria = false; + } else { + sb.append(" or "); + } + + sb.append('('); + List criterions = criteria.getAllCriteria(); + boolean firstCriterion = true; + for (int j = 0; j < criterions.size(); j++) { + Criterion criterion = criterions.get(j); + if (firstCriterion) { + firstCriterion = false; + } else { + sb.append(" and "); + } + + if (criterion.isNoValue()) { + sb.append(criterion.getCondition()); + } else if (criterion.isSingleValue()) { + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); + } else { + sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); + } + } else if (criterion.isBetweenValue()) { + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); + } else { + sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); + } + } else if (criterion.isListValue()) { + sb.append(criterion.getCondition()); + sb.append(" ("); + List listItems = (List) criterion.getValue(); + boolean comma = false; + for (int k = 0; k < listItems.size(); k++) { + if (comma) { + sb.append(", "); + } else { + comma = true; + } + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase3, i, j, k)); + } else { + sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); + } + } + sb.append(')'); + } + } + sb.append(')'); + } + } + + if (sb.length() > 0) { + sql.WHERE(sb.toString()); + } + } +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/dao/StudentItemGradeMapper.java b/service/src/main/java/com/cg/dao/StudentItemGradeMapper.java new file mode 100644 index 0000000..1147834 --- /dev/null +++ b/service/src/main/java/com/cg/dao/StudentItemGradeMapper.java @@ -0,0 +1,142 @@ +package com.cg.dao; + +import com.cg.entity.StudentItemGrade; +import com.cg.entity.StudentItemGradeExample; +import java.util.List; +import org.apache.ibatis.annotations.Delete; +import org.apache.ibatis.annotations.DeleteProvider; +import org.apache.ibatis.annotations.Insert; +import org.apache.ibatis.annotations.InsertProvider; +import org.apache.ibatis.annotations.Options; +import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Result; +import org.apache.ibatis.annotations.Results; +import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.annotations.SelectProvider; +import org.apache.ibatis.annotations.Update; +import org.apache.ibatis.annotations.UpdateProvider; +import org.apache.ibatis.type.JdbcType; +import org.springframework.stereotype.Repository; + +/** + * + * 代码由工具生成,请勿修改!!! + * 如果需要扩展请在其父类进行扩展 + * + **/ +@Repository +public interface StudentItemGradeMapper extends StudentItemGradeMapperExt { + @SelectProvider(type=StudentItemGradeSqlProvider.class, method="countByExample") + long countByExample(StudentItemGradeExample example); + + @DeleteProvider(type=StudentItemGradeSqlProvider.class, method="deleteByExample") + int deleteByExample(StudentItemGradeExample example); + + @Delete({ + "delete from student_item_grade", + "where id = #{id,jdbcType=INTEGER}" + }) + int deleteByPrimaryKey(Integer id); + + @Insert({ + "insert into student_item_grade (student_id, item_id, ", + "item_name, grade_type, ", + "first_grade_one, first_grade_two, ", + "second_grade_one, second_grade_two, ", + "grade, create_time, ", + "update_time, `status`, ", + "ext_1, ext_2, ext_3)", + "values (#{studentId,jdbcType=BIGINT}, #{itemId,jdbcType=BIGINT}, ", + "#{itemName,jdbcType=VARCHAR}, #{gradeType,jdbcType=INTEGER}, ", + "#{firstGradeOne,jdbcType=DECIMAL}, #{firstGradeTwo,jdbcType=DECIMAL}, ", + "#{secondGradeOne,jdbcType=DECIMAL}, #{secondGradeTwo,jdbcType=DECIMAL}, ", + "#{grade,jdbcType=DECIMAL}, #{createTime,jdbcType=TIMESTAMP}, ", + "#{updateTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ", + "#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" + }) + @Options(useGeneratedKeys=true,keyProperty="id") + int insert(StudentItemGrade record); + + @InsertProvider(type=StudentItemGradeSqlProvider.class, method="insertSelective") + @Options(useGeneratedKeys=true,keyProperty="id") + int insertSelective(StudentItemGrade record); + + @SelectProvider(type=StudentItemGradeSqlProvider.class, method="selectByExample") + @Results({ + @Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), + @Result(column="student_id", property="studentId", jdbcType=JdbcType.BIGINT), + @Result(column="item_id", property="itemId", jdbcType=JdbcType.BIGINT), + @Result(column="item_name", property="itemName", jdbcType=JdbcType.VARCHAR), + @Result(column="grade_type", property="gradeType", jdbcType=JdbcType.INTEGER), + @Result(column="first_grade_one", property="firstGradeOne", jdbcType=JdbcType.DECIMAL), + @Result(column="first_grade_two", property="firstGradeTwo", jdbcType=JdbcType.DECIMAL), + @Result(column="second_grade_one", property="secondGradeOne", jdbcType=JdbcType.DECIMAL), + @Result(column="second_grade_two", property="secondGradeTwo", jdbcType=JdbcType.DECIMAL), + @Result(column="grade", property="grade", jdbcType=JdbcType.DECIMAL), + @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), + @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) + }) + List selectByExample(StudentItemGradeExample example); + + @Select({ + "select", + "id, student_id, item_id, item_name, grade_type, first_grade_one, first_grade_two, ", + "second_grade_one, second_grade_two, grade, create_time, update_time, `status`, ", + "ext_1, ext_2, ext_3", + "from student_item_grade", + "where id = #{id,jdbcType=INTEGER}" + }) + @Results({ + @Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), + @Result(column="student_id", property="studentId", jdbcType=JdbcType.BIGINT), + @Result(column="item_id", property="itemId", jdbcType=JdbcType.BIGINT), + @Result(column="item_name", property="itemName", jdbcType=JdbcType.VARCHAR), + @Result(column="grade_type", property="gradeType", jdbcType=JdbcType.INTEGER), + @Result(column="first_grade_one", property="firstGradeOne", jdbcType=JdbcType.DECIMAL), + @Result(column="first_grade_two", property="firstGradeTwo", jdbcType=JdbcType.DECIMAL), + @Result(column="second_grade_one", property="secondGradeOne", jdbcType=JdbcType.DECIMAL), + @Result(column="second_grade_two", property="secondGradeTwo", jdbcType=JdbcType.DECIMAL), + @Result(column="grade", property="grade", jdbcType=JdbcType.DECIMAL), + @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), + @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) + }) + StudentItemGrade selectByPrimaryKey(Integer id); + + @UpdateProvider(type=StudentItemGradeSqlProvider.class, method="updateByExampleSelective") + int updateByExampleSelective(@Param("record") StudentItemGrade record, @Param("example") StudentItemGradeExample example); + + @UpdateProvider(type=StudentItemGradeSqlProvider.class, method="updateByExample") + int updateByExample(@Param("record") StudentItemGrade record, @Param("example") StudentItemGradeExample example); + + @UpdateProvider(type=StudentItemGradeSqlProvider.class, method="updateByPrimaryKeySelective") + int updateByPrimaryKeySelective(StudentItemGrade record); + + @Update({ + "update student_item_grade", + "set student_id = #{studentId,jdbcType=BIGINT},", + "item_id = #{itemId,jdbcType=BIGINT},", + "item_name = #{itemName,jdbcType=VARCHAR},", + "grade_type = #{gradeType,jdbcType=INTEGER},", + "first_grade_one = #{firstGradeOne,jdbcType=DECIMAL},", + "first_grade_two = #{firstGradeTwo,jdbcType=DECIMAL},", + "second_grade_one = #{secondGradeOne,jdbcType=DECIMAL},", + "second_grade_two = #{secondGradeTwo,jdbcType=DECIMAL},", + "grade = #{grade,jdbcType=DECIMAL},", + "create_time = #{createTime,jdbcType=TIMESTAMP},", + "update_time = #{updateTime,jdbcType=TIMESTAMP},", + "`status` = #{status,jdbcType=INTEGER},", + "ext_1 = #{ext1,jdbcType=VARCHAR},", + "ext_2 = #{ext2,jdbcType=VARCHAR},", + "ext_3 = #{ext3,jdbcType=VARCHAR}", + "where id = #{id,jdbcType=INTEGER}" + }) + int updateByPrimaryKey(StudentItemGrade record); +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/dao/StudentItemGradeMapperExt.java b/service/src/main/java/com/cg/dao/StudentItemGradeMapperExt.java new file mode 100644 index 0000000..4f6edf1 --- /dev/null +++ b/service/src/main/java/com/cg/dao/StudentItemGradeMapperExt.java @@ -0,0 +1,7 @@ +package com.cg.dao; + +/** + * mapper扩展类 + */ +public interface StudentItemGradeMapperExt { +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/dao/StudentItemGradeSqlProvider.java b/service/src/main/java/com/cg/dao/StudentItemGradeSqlProvider.java new file mode 100644 index 0000000..4dc5611 --- /dev/null +++ b/service/src/main/java/com/cg/dao/StudentItemGradeSqlProvider.java @@ -0,0 +1,388 @@ +package com.cg.dao; + +import com.cg.entity.StudentItemGrade; +import com.cg.entity.StudentItemGradeExample.Criteria; +import com.cg.entity.StudentItemGradeExample.Criterion; +import com.cg.entity.StudentItemGradeExample; +import java.util.List; +import java.util.Map; +import org.apache.ibatis.jdbc.SQL; + +public class StudentItemGradeSqlProvider { + + public String countByExample(StudentItemGradeExample example) { + SQL sql = new SQL(); + sql.SELECT("count(*)").FROM("student_item_grade"); + applyWhere(sql, example, false); + return sql.toString(); + } + + public String deleteByExample(StudentItemGradeExample example) { + SQL sql = new SQL(); + sql.DELETE_FROM("student_item_grade"); + applyWhere(sql, example, false); + return sql.toString(); + } + + public String insertSelective(StudentItemGrade record) { + SQL sql = new SQL(); + sql.INSERT_INTO("student_item_grade"); + + if (record.getStudentId() != null) { + sql.VALUES("student_id", "#{studentId,jdbcType=BIGINT}"); + } + + if (record.getItemId() != null) { + sql.VALUES("item_id", "#{itemId,jdbcType=BIGINT}"); + } + + if (record.getItemName() != null) { + sql.VALUES("item_name", "#{itemName,jdbcType=VARCHAR}"); + } + + if (record.getGradeType() != null) { + sql.VALUES("grade_type", "#{gradeType,jdbcType=INTEGER}"); + } + + if (record.getFirstGradeOne() != null) { + sql.VALUES("first_grade_one", "#{firstGradeOne,jdbcType=DECIMAL}"); + } + + if (record.getFirstGradeTwo() != null) { + sql.VALUES("first_grade_two", "#{firstGradeTwo,jdbcType=DECIMAL}"); + } + + if (record.getSecondGradeOne() != null) { + sql.VALUES("second_grade_one", "#{secondGradeOne,jdbcType=DECIMAL}"); + } + + if (record.getSecondGradeTwo() != null) { + sql.VALUES("second_grade_two", "#{secondGradeTwo,jdbcType=DECIMAL}"); + } + + if (record.getGrade() != null) { + sql.VALUES("grade", "#{grade,jdbcType=DECIMAL}"); + } + + if (record.getCreateTime() != null) { + sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.VALUES("update_time", "#{updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); + } + + return sql.toString(); + } + + public String selectByExample(StudentItemGradeExample example) { + SQL sql = new SQL(); + if (example != null && example.isDistinct()) { + sql.SELECT_DISTINCT("id"); + } else { + sql.SELECT("id"); + } + sql.SELECT("student_id"); + sql.SELECT("item_id"); + sql.SELECT("item_name"); + sql.SELECT("grade_type"); + sql.SELECT("first_grade_one"); + sql.SELECT("first_grade_two"); + sql.SELECT("second_grade_one"); + sql.SELECT("second_grade_two"); + sql.SELECT("grade"); + sql.SELECT("create_time"); + sql.SELECT("update_time"); + sql.SELECT("`status`"); + sql.SELECT("ext_1"); + sql.SELECT("ext_2"); + sql.SELECT("ext_3"); + sql.FROM("student_item_grade"); + applyWhere(sql, example, false); + + if (example != null && example.getOrderByClause() != null) { + sql.ORDER_BY(example.getOrderByClause()); + } + + return sql.toString(); + } + + public String updateByExampleSelective(Map parameter) { + StudentItemGrade record = (StudentItemGrade) parameter.get("record"); + StudentItemGradeExample example = (StudentItemGradeExample) parameter.get("example"); + + SQL sql = new SQL(); + sql.UPDATE("student_item_grade"); + + if (record.getId() != null) { + sql.SET("id = #{record.id,jdbcType=INTEGER}"); + } + + if (record.getStudentId() != null) { + sql.SET("student_id = #{record.studentId,jdbcType=BIGINT}"); + } + + if (record.getItemId() != null) { + sql.SET("item_id = #{record.itemId,jdbcType=BIGINT}"); + } + + if (record.getItemName() != null) { + sql.SET("item_name = #{record.itemName,jdbcType=VARCHAR}"); + } + + if (record.getGradeType() != null) { + sql.SET("grade_type = #{record.gradeType,jdbcType=INTEGER}"); + } + + if (record.getFirstGradeOne() != null) { + sql.SET("first_grade_one = #{record.firstGradeOne,jdbcType=DECIMAL}"); + } + + if (record.getFirstGradeTwo() != null) { + sql.SET("first_grade_two = #{record.firstGradeTwo,jdbcType=DECIMAL}"); + } + + if (record.getSecondGradeOne() != null) { + sql.SET("second_grade_one = #{record.secondGradeOne,jdbcType=DECIMAL}"); + } + + if (record.getSecondGradeTwo() != null) { + sql.SET("second_grade_two = #{record.secondGradeTwo,jdbcType=DECIMAL}"); + } + + if (record.getGrade() != null) { + sql.SET("grade = #{record.grade,jdbcType=DECIMAL}"); + } + + if (record.getCreateTime() != null) { + sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); + } + + applyWhere(sql, example, true); + return sql.toString(); + } + + public String updateByExample(Map parameter) { + SQL sql = new SQL(); + sql.UPDATE("student_item_grade"); + + sql.SET("id = #{record.id,jdbcType=INTEGER}"); + sql.SET("student_id = #{record.studentId,jdbcType=BIGINT}"); + sql.SET("item_id = #{record.itemId,jdbcType=BIGINT}"); + sql.SET("item_name = #{record.itemName,jdbcType=VARCHAR}"); + sql.SET("grade_type = #{record.gradeType,jdbcType=INTEGER}"); + sql.SET("first_grade_one = #{record.firstGradeOne,jdbcType=DECIMAL}"); + sql.SET("first_grade_two = #{record.firstGradeTwo,jdbcType=DECIMAL}"); + sql.SET("second_grade_one = #{record.secondGradeOne,jdbcType=DECIMAL}"); + sql.SET("second_grade_two = #{record.secondGradeTwo,jdbcType=DECIMAL}"); + sql.SET("grade = #{record.grade,jdbcType=DECIMAL}"); + sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); + sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); + sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); + sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); + sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); + sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); + + StudentItemGradeExample example = (StudentItemGradeExample) parameter.get("example"); + applyWhere(sql, example, true); + return sql.toString(); + } + + public String updateByPrimaryKeySelective(StudentItemGrade record) { + SQL sql = new SQL(); + sql.UPDATE("student_item_grade"); + + if (record.getStudentId() != null) { + sql.SET("student_id = #{studentId,jdbcType=BIGINT}"); + } + + if (record.getItemId() != null) { + sql.SET("item_id = #{itemId,jdbcType=BIGINT}"); + } + + if (record.getItemName() != null) { + sql.SET("item_name = #{itemName,jdbcType=VARCHAR}"); + } + + if (record.getGradeType() != null) { + sql.SET("grade_type = #{gradeType,jdbcType=INTEGER}"); + } + + if (record.getFirstGradeOne() != null) { + sql.SET("first_grade_one = #{firstGradeOne,jdbcType=DECIMAL}"); + } + + if (record.getFirstGradeTwo() != null) { + sql.SET("first_grade_two = #{firstGradeTwo,jdbcType=DECIMAL}"); + } + + if (record.getSecondGradeOne() != null) { + sql.SET("second_grade_one = #{secondGradeOne,jdbcType=DECIMAL}"); + } + + if (record.getSecondGradeTwo() != null) { + sql.SET("second_grade_two = #{secondGradeTwo,jdbcType=DECIMAL}"); + } + + if (record.getGrade() != null) { + sql.SET("grade = #{grade,jdbcType=DECIMAL}"); + } + + if (record.getCreateTime() != null) { + sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.SET("update_time = #{updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.SET("`status` = #{status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); + } + + sql.WHERE("id = #{id,jdbcType=INTEGER}"); + + return sql.toString(); + } + + protected void applyWhere(SQL sql, StudentItemGradeExample example, boolean includeExamplePhrase) { + if (example == null) { + return; + } + + String parmPhrase1; + String parmPhrase1_th; + String parmPhrase2; + String parmPhrase2_th; + String parmPhrase3; + String parmPhrase3_th; + if (includeExamplePhrase) { + parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; + parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; + parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; + parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; + parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; + parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; + } else { + parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; + parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; + parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; + parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; + parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; + parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; + } + + StringBuilder sb = new StringBuilder(); + List oredCriteria = example.getOredCriteria(); + boolean firstCriteria = true; + for (int i = 0; i < oredCriteria.size(); i++) { + Criteria criteria = oredCriteria.get(i); + if (criteria.isValid()) { + if (firstCriteria) { + firstCriteria = false; + } else { + sb.append(" or "); + } + + sb.append('('); + List criterions = criteria.getAllCriteria(); + boolean firstCriterion = true; + for (int j = 0; j < criterions.size(); j++) { + Criterion criterion = criterions.get(j); + if (firstCriterion) { + firstCriterion = false; + } else { + sb.append(" and "); + } + + if (criterion.isNoValue()) { + sb.append(criterion.getCondition()); + } else if (criterion.isSingleValue()) { + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); + } else { + sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); + } + } else if (criterion.isBetweenValue()) { + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); + } else { + sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); + } + } else if (criterion.isListValue()) { + sb.append(criterion.getCondition()); + sb.append(" ("); + List listItems = (List) criterion.getValue(); + boolean comma = false; + for (int k = 0; k < listItems.size(); k++) { + if (comma) { + sb.append(", "); + } else { + comma = true; + } + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase3, i, j, k)); + } else { + sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); + } + } + sb.append(')'); + } + } + sb.append(')'); + } + } + + if (sb.length() > 0) { + sql.WHERE(sb.toString()); + } + } +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/dao/StudentItemMapper.java b/service/src/main/java/com/cg/dao/StudentItemMapper.java new file mode 100644 index 0000000..5555e72 --- /dev/null +++ b/service/src/main/java/com/cg/dao/StudentItemMapper.java @@ -0,0 +1,125 @@ +package com.cg.dao; + +import com.cg.entity.StudentItem; +import com.cg.entity.StudentItemExample; +import java.util.List; +import org.apache.ibatis.annotations.Delete; +import org.apache.ibatis.annotations.DeleteProvider; +import org.apache.ibatis.annotations.Insert; +import org.apache.ibatis.annotations.InsertProvider; +import org.apache.ibatis.annotations.Options; +import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Result; +import org.apache.ibatis.annotations.Results; +import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.annotations.SelectProvider; +import org.apache.ibatis.annotations.Update; +import org.apache.ibatis.annotations.UpdateProvider; +import org.apache.ibatis.type.JdbcType; +import org.springframework.stereotype.Repository; + +/** + * + * 代码由工具生成,请勿修改!!! + * 如果需要扩展请在其父类进行扩展 + * + **/ +@Repository +public interface StudentItemMapper extends StudentItemMapperExt { + @SelectProvider(type=StudentItemSqlProvider.class, method="countByExample") + long countByExample(StudentItemExample example); + + @DeleteProvider(type=StudentItemSqlProvider.class, method="deleteByExample") + int deleteByExample(StudentItemExample example); + + @Delete({ + "delete from student_item", + "where id = #{id,jdbcType=INTEGER}" + }) + int deleteByPrimaryKey(Integer id); + + @Insert({ + "insert into student_item (`name`, item_type, ", + "sports_type, grade_type, ", + "parent_id, create_time, ", + "update_time, `status`, ", + "ext_1, ext_2, ext_3)", + "values (#{name,jdbcType=VARCHAR}, #{itemType,jdbcType=INTEGER}, ", + "#{sportsType,jdbcType=INTEGER}, #{gradeType,jdbcType=INTEGER}, ", + "#{parentId,jdbcType=BIGINT}, #{createTime,jdbcType=TIMESTAMP}, ", + "#{updateTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ", + "#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" + }) + @Options(useGeneratedKeys=true,keyProperty="id") + int insert(StudentItem record); + + @InsertProvider(type=StudentItemSqlProvider.class, method="insertSelective") + @Options(useGeneratedKeys=true,keyProperty="id") + int insertSelective(StudentItem record); + + @SelectProvider(type=StudentItemSqlProvider.class, method="selectByExample") + @Results({ + @Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), + @Result(column="name", property="name", jdbcType=JdbcType.VARCHAR), + @Result(column="item_type", property="itemType", jdbcType=JdbcType.INTEGER), + @Result(column="sports_type", property="sportsType", jdbcType=JdbcType.INTEGER), + @Result(column="grade_type", property="gradeType", jdbcType=JdbcType.INTEGER), + @Result(column="parent_id", property="parentId", jdbcType=JdbcType.BIGINT), + @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), + @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) + }) + List selectByExample(StudentItemExample example); + + @Select({ + "select", + "id, `name`, item_type, sports_type, grade_type, parent_id, create_time, update_time, ", + "`status`, ext_1, ext_2, ext_3", + "from student_item", + "where id = #{id,jdbcType=INTEGER}" + }) + @Results({ + @Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), + @Result(column="name", property="name", jdbcType=JdbcType.VARCHAR), + @Result(column="item_type", property="itemType", jdbcType=JdbcType.INTEGER), + @Result(column="sports_type", property="sportsType", jdbcType=JdbcType.INTEGER), + @Result(column="grade_type", property="gradeType", jdbcType=JdbcType.INTEGER), + @Result(column="parent_id", property="parentId", jdbcType=JdbcType.BIGINT), + @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), + @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), + @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), + @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) + }) + StudentItem selectByPrimaryKey(Integer id); + + @UpdateProvider(type=StudentItemSqlProvider.class, method="updateByExampleSelective") + int updateByExampleSelective(@Param("record") StudentItem record, @Param("example") StudentItemExample example); + + @UpdateProvider(type=StudentItemSqlProvider.class, method="updateByExample") + int updateByExample(@Param("record") StudentItem record, @Param("example") StudentItemExample example); + + @UpdateProvider(type=StudentItemSqlProvider.class, method="updateByPrimaryKeySelective") + int updateByPrimaryKeySelective(StudentItem record); + + @Update({ + "update student_item", + "set `name` = #{name,jdbcType=VARCHAR},", + "item_type = #{itemType,jdbcType=INTEGER},", + "sports_type = #{sportsType,jdbcType=INTEGER},", + "grade_type = #{gradeType,jdbcType=INTEGER},", + "parent_id = #{parentId,jdbcType=BIGINT},", + "create_time = #{createTime,jdbcType=TIMESTAMP},", + "update_time = #{updateTime,jdbcType=TIMESTAMP},", + "`status` = #{status,jdbcType=INTEGER},", + "ext_1 = #{ext1,jdbcType=VARCHAR},", + "ext_2 = #{ext2,jdbcType=VARCHAR},", + "ext_3 = #{ext3,jdbcType=VARCHAR}", + "where id = #{id,jdbcType=INTEGER}" + }) + int updateByPrimaryKey(StudentItem record); +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/dao/StudentItemMapperExt.java b/service/src/main/java/com/cg/dao/StudentItemMapperExt.java new file mode 100644 index 0000000..97d414d --- /dev/null +++ b/service/src/main/java/com/cg/dao/StudentItemMapperExt.java @@ -0,0 +1,7 @@ +package com.cg.dao; + +/** + * mapper扩展类 + */ +public interface StudentItemMapperExt { +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/dao/StudentItemSqlProvider.java b/service/src/main/java/com/cg/dao/StudentItemSqlProvider.java new file mode 100644 index 0000000..f1a50ed --- /dev/null +++ b/service/src/main/java/com/cg/dao/StudentItemSqlProvider.java @@ -0,0 +1,332 @@ +package com.cg.dao; + +import com.cg.entity.StudentItem; +import com.cg.entity.StudentItemExample.Criteria; +import com.cg.entity.StudentItemExample.Criterion; +import com.cg.entity.StudentItemExample; +import java.util.List; +import java.util.Map; +import org.apache.ibatis.jdbc.SQL; + +public class StudentItemSqlProvider { + + public String countByExample(StudentItemExample example) { + SQL sql = new SQL(); + sql.SELECT("count(*)").FROM("student_item"); + applyWhere(sql, example, false); + return sql.toString(); + } + + public String deleteByExample(StudentItemExample example) { + SQL sql = new SQL(); + sql.DELETE_FROM("student_item"); + applyWhere(sql, example, false); + return sql.toString(); + } + + public String insertSelective(StudentItem record) { + SQL sql = new SQL(); + sql.INSERT_INTO("student_item"); + + if (record.getName() != null) { + sql.VALUES("`name`", "#{name,jdbcType=VARCHAR}"); + } + + if (record.getItemType() != null) { + sql.VALUES("item_type", "#{itemType,jdbcType=INTEGER}"); + } + + if (record.getSportsType() != null) { + sql.VALUES("sports_type", "#{sportsType,jdbcType=INTEGER}"); + } + + if (record.getGradeType() != null) { + sql.VALUES("grade_type", "#{gradeType,jdbcType=INTEGER}"); + } + + if (record.getParentId() != null) { + sql.VALUES("parent_id", "#{parentId,jdbcType=BIGINT}"); + } + + if (record.getCreateTime() != null) { + sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.VALUES("update_time", "#{updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); + } + + return sql.toString(); + } + + public String selectByExample(StudentItemExample example) { + SQL sql = new SQL(); + if (example != null && example.isDistinct()) { + sql.SELECT_DISTINCT("id"); + } else { + sql.SELECT("id"); + } + sql.SELECT("`name`"); + sql.SELECT("item_type"); + sql.SELECT("sports_type"); + sql.SELECT("grade_type"); + sql.SELECT("parent_id"); + sql.SELECT("create_time"); + sql.SELECT("update_time"); + sql.SELECT("`status`"); + sql.SELECT("ext_1"); + sql.SELECT("ext_2"); + sql.SELECT("ext_3"); + sql.FROM("student_item"); + applyWhere(sql, example, false); + + if (example != null && example.getOrderByClause() != null) { + sql.ORDER_BY(example.getOrderByClause()); + } + + return sql.toString(); + } + + public String updateByExampleSelective(Map parameter) { + StudentItem record = (StudentItem) parameter.get("record"); + StudentItemExample example = (StudentItemExample) parameter.get("example"); + + SQL sql = new SQL(); + sql.UPDATE("student_item"); + + if (record.getId() != null) { + sql.SET("id = #{record.id,jdbcType=INTEGER}"); + } + + if (record.getName() != null) { + sql.SET("`name` = #{record.name,jdbcType=VARCHAR}"); + } + + if (record.getItemType() != null) { + sql.SET("item_type = #{record.itemType,jdbcType=INTEGER}"); + } + + if (record.getSportsType() != null) { + sql.SET("sports_type = #{record.sportsType,jdbcType=INTEGER}"); + } + + if (record.getGradeType() != null) { + sql.SET("grade_type = #{record.gradeType,jdbcType=INTEGER}"); + } + + if (record.getParentId() != null) { + sql.SET("parent_id = #{record.parentId,jdbcType=BIGINT}"); + } + + if (record.getCreateTime() != null) { + sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); + } + + applyWhere(sql, example, true); + return sql.toString(); + } + + public String updateByExample(Map parameter) { + SQL sql = new SQL(); + sql.UPDATE("student_item"); + + sql.SET("id = #{record.id,jdbcType=INTEGER}"); + sql.SET("`name` = #{record.name,jdbcType=VARCHAR}"); + sql.SET("item_type = #{record.itemType,jdbcType=INTEGER}"); + sql.SET("sports_type = #{record.sportsType,jdbcType=INTEGER}"); + sql.SET("grade_type = #{record.gradeType,jdbcType=INTEGER}"); + sql.SET("parent_id = #{record.parentId,jdbcType=BIGINT}"); + sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); + sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); + sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); + sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); + sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); + sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); + + StudentItemExample example = (StudentItemExample) parameter.get("example"); + applyWhere(sql, example, true); + return sql.toString(); + } + + public String updateByPrimaryKeySelective(StudentItem record) { + SQL sql = new SQL(); + sql.UPDATE("student_item"); + + if (record.getName() != null) { + sql.SET("`name` = #{name,jdbcType=VARCHAR}"); + } + + if (record.getItemType() != null) { + sql.SET("item_type = #{itemType,jdbcType=INTEGER}"); + } + + if (record.getSportsType() != null) { + sql.SET("sports_type = #{sportsType,jdbcType=INTEGER}"); + } + + if (record.getGradeType() != null) { + sql.SET("grade_type = #{gradeType,jdbcType=INTEGER}"); + } + + if (record.getParentId() != null) { + sql.SET("parent_id = #{parentId,jdbcType=BIGINT}"); + } + + if (record.getCreateTime() != null) { + sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); + } + + if (record.getUpdateTime() != null) { + sql.SET("update_time = #{updateTime,jdbcType=TIMESTAMP}"); + } + + if (record.getStatus() != null) { + sql.SET("`status` = #{status,jdbcType=INTEGER}"); + } + + if (record.getExt1() != null) { + sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); + } + + if (record.getExt2() != null) { + sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); + } + + if (record.getExt3() != null) { + sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); + } + + sql.WHERE("id = #{id,jdbcType=INTEGER}"); + + return sql.toString(); + } + + protected void applyWhere(SQL sql, StudentItemExample example, boolean includeExamplePhrase) { + if (example == null) { + return; + } + + String parmPhrase1; + String parmPhrase1_th; + String parmPhrase2; + String parmPhrase2_th; + String parmPhrase3; + String parmPhrase3_th; + if (includeExamplePhrase) { + parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; + parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; + parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; + parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; + parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; + parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; + } else { + parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; + parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; + parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; + parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; + parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; + parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; + } + + StringBuilder sb = new StringBuilder(); + List oredCriteria = example.getOredCriteria(); + boolean firstCriteria = true; + for (int i = 0; i < oredCriteria.size(); i++) { + Criteria criteria = oredCriteria.get(i); + if (criteria.isValid()) { + if (firstCriteria) { + firstCriteria = false; + } else { + sb.append(" or "); + } + + sb.append('('); + List criterions = criteria.getAllCriteria(); + boolean firstCriterion = true; + for (int j = 0; j < criterions.size(); j++) { + Criterion criterion = criterions.get(j); + if (firstCriterion) { + firstCriterion = false; + } else { + sb.append(" and "); + } + + if (criterion.isNoValue()) { + sb.append(criterion.getCondition()); + } else if (criterion.isSingleValue()) { + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); + } else { + sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); + } + } else if (criterion.isBetweenValue()) { + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); + } else { + sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); + } + } else if (criterion.isListValue()) { + sb.append(criterion.getCondition()); + sb.append(" ("); + List listItems = (List) criterion.getValue(); + boolean comma = false; + for (int k = 0; k < listItems.size(); k++) { + if (comma) { + sb.append(", "); + } else { + comma = true; + } + if (criterion.getTypeHandler() == null) { + sb.append(String.format(parmPhrase3, i, j, k)); + } else { + sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); + } + } + sb.append(')'); + } + } + sb.append(')'); + } + } + + if (sb.length() > 0) { + sql.WHERE(sb.toString()); + } + } +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/entity/BsUserStudentRel.java b/service/src/main/java/com/cg/entity/BsUserStudentRel.java new file mode 100644 index 0000000..86f742a --- /dev/null +++ b/service/src/main/java/com/cg/entity/BsUserStudentRel.java @@ -0,0 +1,209 @@ +package com.cg.entity; + +import java.io.Serializable; +import java.util.Date; + +/** + * bs_user_student_rel + * @author + */ +/** + * + * 代码由工具生成 + * + **/ +public class BsUserStudentRel implements Serializable { + /** + * 主键 + */ + private Integer id; + + /** + * 用户编码 + */ + private Long userId; + + /** + * 学生编码 + */ + private Long studentId; + + /** + * 用户与学生关系:1:妈妈 2:爸爸 3:爷爷 4:奶奶 5:外公 6:外婆 7:伯伯 8:舅舅9:姑妈10:姨妈 + */ + private Integer relationship; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 更新时间 + */ + private Date updateTime; + + /** + * 状态:1:正常 0:删除 + */ + private Integer status; + + /** + * ext_1 + */ + private String ext1; + + /** + * ext_2 + */ + private String ext2; + + /** + * ext_3 + */ + private String ext3; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getUserId() { + return userId; + } + + public void setUserId(Long userId) { + this.userId = userId; + } + + public Long getStudentId() { + return studentId; + } + + public void setStudentId(Long studentId) { + this.studentId = studentId; + } + + public Integer getRelationship() { + return relationship; + } + + public void setRelationship(Integer relationship) { + this.relationship = relationship; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getExt1() { + return ext1; + } + + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + public String getExt2() { + return ext2; + } + + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + public String getExt3() { + return ext3; + } + + public void setExt3(String ext3) { + this.ext3 = ext3; + } + + @Override + public boolean equals(Object that) { + if (this == that) { + return true; + } + if (that == null) { + return false; + } + if (getClass() != that.getClass()) { + return false; + } + BsUserStudentRel other = (BsUserStudentRel) that; + return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) + && (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId())) + && (this.getStudentId() == null ? other.getStudentId() == null : this.getStudentId().equals(other.getStudentId())) + && (this.getRelationship() == null ? other.getRelationship() == null : this.getRelationship().equals(other.getRelationship())) + && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) + && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) + && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) + && (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) + && (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) + && (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); + result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode()); + result = prime * result + ((getStudentId() == null) ? 0 : getStudentId().hashCode()); + result = prime * result + ((getRelationship() == null) ? 0 : getRelationship().hashCode()); + result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); + result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); + result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); + result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); + result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); + result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); + return result; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append(getClass().getSimpleName()); + sb.append(" ["); + sb.append("Hash = ").append(hashCode()); + sb.append(", id=").append(id); + sb.append(", userId=").append(userId); + sb.append(", studentId=").append(studentId); + sb.append(", relationship=").append(relationship); + sb.append(", createTime=").append(createTime); + sb.append(", updateTime=").append(updateTime); + sb.append(", status=").append(status); + sb.append(", ext1=").append(ext1); + sb.append(", ext2=").append(ext2); + sb.append(", ext3=").append(ext3); + sb.append(", serialVersionUID=").append(serialVersionUID); + sb.append("]"); + return sb.toString(); + } +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/entity/BsUserStudentRelExample.java b/service/src/main/java/com/cg/entity/BsUserStudentRelExample.java new file mode 100644 index 0000000..60789a7 --- /dev/null +++ b/service/src/main/java/com/cg/entity/BsUserStudentRelExample.java @@ -0,0 +1,853 @@ +package com.cg.entity; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class BsUserStudentRelExample { + protected String orderByClause; + + protected boolean distinct; + + protected List oredCriteria; + + private Integer limit; + + private Long offset; + + public BsUserStudentRelExample() { + oredCriteria = new ArrayList(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + public void setLimit(Integer limit) { + this.limit = limit; + } + + public Integer getLimit() { + return limit; + } + + public void setOffset(Long offset) { + this.offset = offset; + } + + public Long getOffset() { + return offset; + } + + protected abstract static class GeneratedCriteria { + protected List criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List getAllCriteria() { + return criteria; + } + + public List getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andUserIdIsNull() { + addCriterion("user_id is null"); + return (Criteria) this; + } + + public Criteria andUserIdIsNotNull() { + addCriterion("user_id is not null"); + return (Criteria) this; + } + + public Criteria andUserIdEqualTo(Long value) { + addCriterion("user_id =", value, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdNotEqualTo(Long value) { + addCriterion("user_id <>", value, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdGreaterThan(Long value) { + addCriterion("user_id >", value, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdGreaterThanOrEqualTo(Long value) { + addCriterion("user_id >=", value, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdLessThan(Long value) { + addCriterion("user_id <", value, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdLessThanOrEqualTo(Long value) { + addCriterion("user_id <=", value, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdIn(List values) { + addCriterion("user_id in", values, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdNotIn(List values) { + addCriterion("user_id not in", values, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdBetween(Long value1, Long value2) { + addCriterion("user_id between", value1, value2, "userId"); + return (Criteria) this; + } + + public Criteria andUserIdNotBetween(Long value1, Long value2) { + addCriterion("user_id not between", value1, value2, "userId"); + return (Criteria) this; + } + + public Criteria andStudentIdIsNull() { + addCriterion("student_id is null"); + return (Criteria) this; + } + + public Criteria andStudentIdIsNotNull() { + addCriterion("student_id is not null"); + return (Criteria) this; + } + + public Criteria andStudentIdEqualTo(Long value) { + addCriterion("student_id =", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdNotEqualTo(Long value) { + addCriterion("student_id <>", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdGreaterThan(Long value) { + addCriterion("student_id >", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdGreaterThanOrEqualTo(Long value) { + addCriterion("student_id >=", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdLessThan(Long value) { + addCriterion("student_id <", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdLessThanOrEqualTo(Long value) { + addCriterion("student_id <=", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdIn(List values) { + addCriterion("student_id in", values, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdNotIn(List values) { + addCriterion("student_id not in", values, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdBetween(Long value1, Long value2) { + addCriterion("student_id between", value1, value2, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdNotBetween(Long value1, Long value2) { + addCriterion("student_id not between", value1, value2, "studentId"); + return (Criteria) this; + } + + public Criteria andRelationshipIsNull() { + addCriterion("relationship is null"); + return (Criteria) this; + } + + public Criteria andRelationshipIsNotNull() { + addCriterion("relationship is not null"); + return (Criteria) this; + } + + public Criteria andRelationshipEqualTo(Integer value) { + addCriterion("relationship =", value, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipNotEqualTo(Integer value) { + addCriterion("relationship <>", value, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipGreaterThan(Integer value) { + addCriterion("relationship >", value, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipGreaterThanOrEqualTo(Integer value) { + addCriterion("relationship >=", value, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipLessThan(Integer value) { + addCriterion("relationship <", value, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipLessThanOrEqualTo(Integer value) { + addCriterion("relationship <=", value, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipIn(List values) { + addCriterion("relationship in", values, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipNotIn(List values) { + addCriterion("relationship not in", values, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipBetween(Integer value1, Integer value2) { + addCriterion("relationship between", value1, value2, "relationship"); + return (Criteria) this; + } + + public Criteria andRelationshipNotBetween(Integer value1, Integer value2) { + addCriterion("relationship not between", value1, value2, "relationship"); + return (Criteria) this; + } + + public Criteria andCreateTimeIsNull() { + addCriterion("create_time is null"); + return (Criteria) this; + } + + public Criteria andCreateTimeIsNotNull() { + addCriterion("create_time is not null"); + return (Criteria) this; + } + + public Criteria andCreateTimeEqualTo(Date value) { + addCriterion("create_time =", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotEqualTo(Date value) { + addCriterion("create_time <>", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeGreaterThan(Date value) { + addCriterion("create_time >", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { + addCriterion("create_time >=", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeLessThan(Date value) { + addCriterion("create_time <", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeLessThanOrEqualTo(Date value) { + addCriterion("create_time <=", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeIn(List values) { + addCriterion("create_time in", values, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotIn(List values) { + addCriterion("create_time not in", values, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeBetween(Date value1, Date value2) { + addCriterion("create_time between", value1, value2, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotBetween(Date value1, Date value2) { + addCriterion("create_time not between", value1, value2, "createTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIsNull() { + addCriterion("update_time is null"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIsNotNull() { + addCriterion("update_time is not null"); + return (Criteria) this; + } + + public Criteria andUpdateTimeEqualTo(Date value) { + addCriterion("update_time =", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotEqualTo(Date value) { + addCriterion("update_time <>", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeGreaterThan(Date value) { + addCriterion("update_time >", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { + addCriterion("update_time >=", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeLessThan(Date value) { + addCriterion("update_time <", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { + addCriterion("update_time <=", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIn(List values) { + addCriterion("update_time in", values, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotIn(List values) { + addCriterion("update_time not in", values, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeBetween(Date value1, Date value2) { + addCriterion("update_time between", value1, value2, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { + addCriterion("update_time not between", value1, value2, "updateTime"); + return (Criteria) this; + } + + public Criteria andStatusIsNull() { + addCriterion("`status` is null"); + return (Criteria) this; + } + + public Criteria andStatusIsNotNull() { + addCriterion("`status` is not null"); + return (Criteria) this; + } + + public Criteria andStatusEqualTo(Integer value) { + addCriterion("`status` =", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotEqualTo(Integer value) { + addCriterion("`status` <>", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusGreaterThan(Integer value) { + addCriterion("`status` >", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusGreaterThanOrEqualTo(Integer value) { + addCriterion("`status` >=", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLessThan(Integer value) { + addCriterion("`status` <", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLessThanOrEqualTo(Integer value) { + addCriterion("`status` <=", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusIn(List values) { + addCriterion("`status` in", values, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotIn(List values) { + addCriterion("`status` not in", values, "status"); + return (Criteria) this; + } + + public Criteria andStatusBetween(Integer value1, Integer value2) { + addCriterion("`status` between", value1, value2, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotBetween(Integer value1, Integer value2) { + addCriterion("`status` not between", value1, value2, "status"); + return (Criteria) this; + } + + public Criteria andExt1IsNull() { + addCriterion("ext_1 is null"); + return (Criteria) this; + } + + public Criteria andExt1IsNotNull() { + addCriterion("ext_1 is not null"); + return (Criteria) this; + } + + public Criteria andExt1EqualTo(String value) { + addCriterion("ext_1 =", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotEqualTo(String value) { + addCriterion("ext_1 <>", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1GreaterThan(String value) { + addCriterion("ext_1 >", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1GreaterThanOrEqualTo(String value) { + addCriterion("ext_1 >=", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1LessThan(String value) { + addCriterion("ext_1 <", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1LessThanOrEqualTo(String value) { + addCriterion("ext_1 <=", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1Like(String value) { + addCriterion("ext_1 like", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotLike(String value) { + addCriterion("ext_1 not like", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1In(List values) { + addCriterion("ext_1 in", values, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotIn(List values) { + addCriterion("ext_1 not in", values, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1Between(String value1, String value2) { + addCriterion("ext_1 between", value1, value2, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotBetween(String value1, String value2) { + addCriterion("ext_1 not between", value1, value2, "ext1"); + return (Criteria) this; + } + + public Criteria andExt2IsNull() { + addCriterion("ext_2 is null"); + return (Criteria) this; + } + + public Criteria andExt2IsNotNull() { + addCriterion("ext_2 is not null"); + return (Criteria) this; + } + + public Criteria andExt2EqualTo(String value) { + addCriterion("ext_2 =", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotEqualTo(String value) { + addCriterion("ext_2 <>", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2GreaterThan(String value) { + addCriterion("ext_2 >", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2GreaterThanOrEqualTo(String value) { + addCriterion("ext_2 >=", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2LessThan(String value) { + addCriterion("ext_2 <", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2LessThanOrEqualTo(String value) { + addCriterion("ext_2 <=", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2Like(String value) { + addCriterion("ext_2 like", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotLike(String value) { + addCriterion("ext_2 not like", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2In(List values) { + addCriterion("ext_2 in", values, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotIn(List values) { + addCriterion("ext_2 not in", values, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2Between(String value1, String value2) { + addCriterion("ext_2 between", value1, value2, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotBetween(String value1, String value2) { + addCriterion("ext_2 not between", value1, value2, "ext2"); + return (Criteria) this; + } + + public Criteria andExt3IsNull() { + addCriterion("ext_3 is null"); + return (Criteria) this; + } + + public Criteria andExt3IsNotNull() { + addCriterion("ext_3 is not null"); + return (Criteria) this; + } + + public Criteria andExt3EqualTo(String value) { + addCriterion("ext_3 =", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotEqualTo(String value) { + addCriterion("ext_3 <>", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3GreaterThan(String value) { + addCriterion("ext_3 >", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3GreaterThanOrEqualTo(String value) { + addCriterion("ext_3 >=", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3LessThan(String value) { + addCriterion("ext_3 <", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3LessThanOrEqualTo(String value) { + addCriterion("ext_3 <=", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3Like(String value) { + addCriterion("ext_3 like", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotLike(String value) { + addCriterion("ext_3 not like", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3In(List values) { + addCriterion("ext_3 in", values, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotIn(List values) { + addCriterion("ext_3 not in", values, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3Between(String value1, String value2) { + addCriterion("ext_3 between", value1, value2, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotBetween(String value1, String value2) { + addCriterion("ext_3 not between", value1, value2, "ext3"); + return (Criteria) this; + } + } + + /** + */ + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/entity/StudentItem.java b/service/src/main/java/com/cg/entity/StudentItem.java new file mode 100644 index 0000000..7266cc4 --- /dev/null +++ b/service/src/main/java/com/cg/entity/StudentItem.java @@ -0,0 +1,241 @@ +package com.cg.entity; + +import java.io.Serializable; +import java.util.Date; + +/** + * student_item + * @author + */ +/** + * + * 代码由工具生成 + * + **/ +public class StudentItem implements Serializable { + /** + * 主键 + */ + private Integer id; + + /** + * 项目名称 + */ + private String name; + + /** + * 项目类型:1:文化 2:体育 + */ + private Integer itemType; + + /** + * 体育类型:1:固定项目 2:专项项目 + */ + private Integer sportsType; + + /** + * 1:秒 2:分 3:米 4:分数 + */ + private Integer gradeType; + + /** + * 父级编码 + */ + private Long parentId; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 更新时间 + */ + private Date updateTime; + + /** + * 状态:1:正常 0:删除 + */ + private Integer status; + + /** + * ext_1 + */ + private String ext1; + + /** + * ext_2 + */ + private String ext2; + + /** + * ext_3 + */ + private String ext3; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Integer getItemType() { + return itemType; + } + + public void setItemType(Integer itemType) { + this.itemType = itemType; + } + + public Integer getSportsType() { + return sportsType; + } + + public void setSportsType(Integer sportsType) { + this.sportsType = sportsType; + } + + public Integer getGradeType() { + return gradeType; + } + + public void setGradeType(Integer gradeType) { + this.gradeType = gradeType; + } + + public Long getParentId() { + return parentId; + } + + public void setParentId(Long parentId) { + this.parentId = parentId; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getExt1() { + return ext1; + } + + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + public String getExt2() { + return ext2; + } + + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + public String getExt3() { + return ext3; + } + + public void setExt3(String ext3) { + this.ext3 = ext3; + } + + @Override + public boolean equals(Object that) { + if (this == that) { + return true; + } + if (that == null) { + return false; + } + if (getClass() != that.getClass()) { + return false; + } + StudentItem other = (StudentItem) that; + return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) + && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName())) + && (this.getItemType() == null ? other.getItemType() == null : this.getItemType().equals(other.getItemType())) + && (this.getSportsType() == null ? other.getSportsType() == null : this.getSportsType().equals(other.getSportsType())) + && (this.getGradeType() == null ? other.getGradeType() == null : this.getGradeType().equals(other.getGradeType())) + && (this.getParentId() == null ? other.getParentId() == null : this.getParentId().equals(other.getParentId())) + && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) + && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) + && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) + && (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) + && (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) + && (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); + result = prime * result + ((getName() == null) ? 0 : getName().hashCode()); + result = prime * result + ((getItemType() == null) ? 0 : getItemType().hashCode()); + result = prime * result + ((getSportsType() == null) ? 0 : getSportsType().hashCode()); + result = prime * result + ((getGradeType() == null) ? 0 : getGradeType().hashCode()); + result = prime * result + ((getParentId() == null) ? 0 : getParentId().hashCode()); + result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); + result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); + result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); + result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); + result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); + result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); + return result; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append(getClass().getSimpleName()); + sb.append(" ["); + sb.append("Hash = ").append(hashCode()); + sb.append(", id=").append(id); + sb.append(", name=").append(name); + sb.append(", itemType=").append(itemType); + sb.append(", sportsType=").append(sportsType); + sb.append(", gradeType=").append(gradeType); + sb.append(", parentId=").append(parentId); + sb.append(", createTime=").append(createTime); + sb.append(", updateTime=").append(updateTime); + sb.append(", status=").append(status); + sb.append(", ext1=").append(ext1); + sb.append(", ext2=").append(ext2); + sb.append(", ext3=").append(ext3); + sb.append(", serialVersionUID=").append(serialVersionUID); + sb.append("]"); + return sb.toString(); + } +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/entity/StudentItemExample.java b/service/src/main/java/com/cg/entity/StudentItemExample.java new file mode 100644 index 0000000..86fccc6 --- /dev/null +++ b/service/src/main/java/com/cg/entity/StudentItemExample.java @@ -0,0 +1,983 @@ +package com.cg.entity; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class StudentItemExample { + protected String orderByClause; + + protected boolean distinct; + + protected List oredCriteria; + + private Integer limit; + + private Long offset; + + public StudentItemExample() { + oredCriteria = new ArrayList(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + public void setLimit(Integer limit) { + this.limit = limit; + } + + public Integer getLimit() { + return limit; + } + + public void setOffset(Long offset) { + this.offset = offset; + } + + public Long getOffset() { + return offset; + } + + protected abstract static class GeneratedCriteria { + protected List criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List getAllCriteria() { + return criteria; + } + + public List getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andNameIsNull() { + addCriterion("`name` is null"); + return (Criteria) this; + } + + public Criteria andNameIsNotNull() { + addCriterion("`name` is not null"); + return (Criteria) this; + } + + public Criteria andNameEqualTo(String value) { + addCriterion("`name` =", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotEqualTo(String value) { + addCriterion("`name` <>", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThan(String value) { + addCriterion("`name` >", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThanOrEqualTo(String value) { + addCriterion("`name` >=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThan(String value) { + addCriterion("`name` <", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThanOrEqualTo(String value) { + addCriterion("`name` <=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLike(String value) { + addCriterion("`name` like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotLike(String value) { + addCriterion("`name` not like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameIn(List values) { + addCriterion("`name` in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameNotIn(List values) { + addCriterion("`name` not in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameBetween(String value1, String value2) { + addCriterion("`name` between", value1, value2, "name"); + return (Criteria) this; + } + + public Criteria andNameNotBetween(String value1, String value2) { + addCriterion("`name` not between", value1, value2, "name"); + return (Criteria) this; + } + + public Criteria andItemTypeIsNull() { + addCriterion("item_type is null"); + return (Criteria) this; + } + + public Criteria andItemTypeIsNotNull() { + addCriterion("item_type is not null"); + return (Criteria) this; + } + + public Criteria andItemTypeEqualTo(Integer value) { + addCriterion("item_type =", value, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeNotEqualTo(Integer value) { + addCriterion("item_type <>", value, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeGreaterThan(Integer value) { + addCriterion("item_type >", value, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeGreaterThanOrEqualTo(Integer value) { + addCriterion("item_type >=", value, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeLessThan(Integer value) { + addCriterion("item_type <", value, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeLessThanOrEqualTo(Integer value) { + addCriterion("item_type <=", value, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeIn(List values) { + addCriterion("item_type in", values, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeNotIn(List values) { + addCriterion("item_type not in", values, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeBetween(Integer value1, Integer value2) { + addCriterion("item_type between", value1, value2, "itemType"); + return (Criteria) this; + } + + public Criteria andItemTypeNotBetween(Integer value1, Integer value2) { + addCriterion("item_type not between", value1, value2, "itemType"); + return (Criteria) this; + } + + public Criteria andSportsTypeIsNull() { + addCriterion("sports_type is null"); + return (Criteria) this; + } + + public Criteria andSportsTypeIsNotNull() { + addCriterion("sports_type is not null"); + return (Criteria) this; + } + + public Criteria andSportsTypeEqualTo(Integer value) { + addCriterion("sports_type =", value, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeNotEqualTo(Integer value) { + addCriterion("sports_type <>", value, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeGreaterThan(Integer value) { + addCriterion("sports_type >", value, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeGreaterThanOrEqualTo(Integer value) { + addCriterion("sports_type >=", value, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeLessThan(Integer value) { + addCriterion("sports_type <", value, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeLessThanOrEqualTo(Integer value) { + addCriterion("sports_type <=", value, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeIn(List values) { + addCriterion("sports_type in", values, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeNotIn(List values) { + addCriterion("sports_type not in", values, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeBetween(Integer value1, Integer value2) { + addCriterion("sports_type between", value1, value2, "sportsType"); + return (Criteria) this; + } + + public Criteria andSportsTypeNotBetween(Integer value1, Integer value2) { + addCriterion("sports_type not between", value1, value2, "sportsType"); + return (Criteria) this; + } + + public Criteria andGradeTypeIsNull() { + addCriterion("grade_type is null"); + return (Criteria) this; + } + + public Criteria andGradeTypeIsNotNull() { + addCriterion("grade_type is not null"); + return (Criteria) this; + } + + public Criteria andGradeTypeEqualTo(Integer value) { + addCriterion("grade_type =", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeNotEqualTo(Integer value) { + addCriterion("grade_type <>", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeGreaterThan(Integer value) { + addCriterion("grade_type >", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeGreaterThanOrEqualTo(Integer value) { + addCriterion("grade_type >=", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeLessThan(Integer value) { + addCriterion("grade_type <", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeLessThanOrEqualTo(Integer value) { + addCriterion("grade_type <=", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeIn(List values) { + addCriterion("grade_type in", values, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeNotIn(List values) { + addCriterion("grade_type not in", values, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeBetween(Integer value1, Integer value2) { + addCriterion("grade_type between", value1, value2, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeNotBetween(Integer value1, Integer value2) { + addCriterion("grade_type not between", value1, value2, "gradeType"); + return (Criteria) this; + } + + public Criteria andParentIdIsNull() { + addCriterion("parent_id is null"); + return (Criteria) this; + } + + public Criteria andParentIdIsNotNull() { + addCriterion("parent_id is not null"); + return (Criteria) this; + } + + public Criteria andParentIdEqualTo(Long value) { + addCriterion("parent_id =", value, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdNotEqualTo(Long value) { + addCriterion("parent_id <>", value, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdGreaterThan(Long value) { + addCriterion("parent_id >", value, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdGreaterThanOrEqualTo(Long value) { + addCriterion("parent_id >=", value, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdLessThan(Long value) { + addCriterion("parent_id <", value, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdLessThanOrEqualTo(Long value) { + addCriterion("parent_id <=", value, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdIn(List values) { + addCriterion("parent_id in", values, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdNotIn(List values) { + addCriterion("parent_id not in", values, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdBetween(Long value1, Long value2) { + addCriterion("parent_id between", value1, value2, "parentId"); + return (Criteria) this; + } + + public Criteria andParentIdNotBetween(Long value1, Long value2) { + addCriterion("parent_id not between", value1, value2, "parentId"); + return (Criteria) this; + } + + public Criteria andCreateTimeIsNull() { + addCriterion("create_time is null"); + return (Criteria) this; + } + + public Criteria andCreateTimeIsNotNull() { + addCriterion("create_time is not null"); + return (Criteria) this; + } + + public Criteria andCreateTimeEqualTo(Date value) { + addCriterion("create_time =", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotEqualTo(Date value) { + addCriterion("create_time <>", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeGreaterThan(Date value) { + addCriterion("create_time >", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { + addCriterion("create_time >=", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeLessThan(Date value) { + addCriterion("create_time <", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeLessThanOrEqualTo(Date value) { + addCriterion("create_time <=", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeIn(List values) { + addCriterion("create_time in", values, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotIn(List values) { + addCriterion("create_time not in", values, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeBetween(Date value1, Date value2) { + addCriterion("create_time between", value1, value2, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotBetween(Date value1, Date value2) { + addCriterion("create_time not between", value1, value2, "createTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIsNull() { + addCriterion("update_time is null"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIsNotNull() { + addCriterion("update_time is not null"); + return (Criteria) this; + } + + public Criteria andUpdateTimeEqualTo(Date value) { + addCriterion("update_time =", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotEqualTo(Date value) { + addCriterion("update_time <>", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeGreaterThan(Date value) { + addCriterion("update_time >", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { + addCriterion("update_time >=", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeLessThan(Date value) { + addCriterion("update_time <", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { + addCriterion("update_time <=", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIn(List values) { + addCriterion("update_time in", values, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotIn(List values) { + addCriterion("update_time not in", values, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeBetween(Date value1, Date value2) { + addCriterion("update_time between", value1, value2, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { + addCriterion("update_time not between", value1, value2, "updateTime"); + return (Criteria) this; + } + + public Criteria andStatusIsNull() { + addCriterion("`status` is null"); + return (Criteria) this; + } + + public Criteria andStatusIsNotNull() { + addCriterion("`status` is not null"); + return (Criteria) this; + } + + public Criteria andStatusEqualTo(Integer value) { + addCriterion("`status` =", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotEqualTo(Integer value) { + addCriterion("`status` <>", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusGreaterThan(Integer value) { + addCriterion("`status` >", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusGreaterThanOrEqualTo(Integer value) { + addCriterion("`status` >=", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLessThan(Integer value) { + addCriterion("`status` <", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLessThanOrEqualTo(Integer value) { + addCriterion("`status` <=", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusIn(List values) { + addCriterion("`status` in", values, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotIn(List values) { + addCriterion("`status` not in", values, "status"); + return (Criteria) this; + } + + public Criteria andStatusBetween(Integer value1, Integer value2) { + addCriterion("`status` between", value1, value2, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotBetween(Integer value1, Integer value2) { + addCriterion("`status` not between", value1, value2, "status"); + return (Criteria) this; + } + + public Criteria andExt1IsNull() { + addCriterion("ext_1 is null"); + return (Criteria) this; + } + + public Criteria andExt1IsNotNull() { + addCriterion("ext_1 is not null"); + return (Criteria) this; + } + + public Criteria andExt1EqualTo(String value) { + addCriterion("ext_1 =", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotEqualTo(String value) { + addCriterion("ext_1 <>", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1GreaterThan(String value) { + addCriterion("ext_1 >", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1GreaterThanOrEqualTo(String value) { + addCriterion("ext_1 >=", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1LessThan(String value) { + addCriterion("ext_1 <", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1LessThanOrEqualTo(String value) { + addCriterion("ext_1 <=", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1Like(String value) { + addCriterion("ext_1 like", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotLike(String value) { + addCriterion("ext_1 not like", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1In(List values) { + addCriterion("ext_1 in", values, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotIn(List values) { + addCriterion("ext_1 not in", values, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1Between(String value1, String value2) { + addCriterion("ext_1 between", value1, value2, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotBetween(String value1, String value2) { + addCriterion("ext_1 not between", value1, value2, "ext1"); + return (Criteria) this; + } + + public Criteria andExt2IsNull() { + addCriterion("ext_2 is null"); + return (Criteria) this; + } + + public Criteria andExt2IsNotNull() { + addCriterion("ext_2 is not null"); + return (Criteria) this; + } + + public Criteria andExt2EqualTo(String value) { + addCriterion("ext_2 =", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotEqualTo(String value) { + addCriterion("ext_2 <>", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2GreaterThan(String value) { + addCriterion("ext_2 >", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2GreaterThanOrEqualTo(String value) { + addCriterion("ext_2 >=", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2LessThan(String value) { + addCriterion("ext_2 <", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2LessThanOrEqualTo(String value) { + addCriterion("ext_2 <=", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2Like(String value) { + addCriterion("ext_2 like", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotLike(String value) { + addCriterion("ext_2 not like", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2In(List values) { + addCriterion("ext_2 in", values, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotIn(List values) { + addCriterion("ext_2 not in", values, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2Between(String value1, String value2) { + addCriterion("ext_2 between", value1, value2, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotBetween(String value1, String value2) { + addCriterion("ext_2 not between", value1, value2, "ext2"); + return (Criteria) this; + } + + public Criteria andExt3IsNull() { + addCriterion("ext_3 is null"); + return (Criteria) this; + } + + public Criteria andExt3IsNotNull() { + addCriterion("ext_3 is not null"); + return (Criteria) this; + } + + public Criteria andExt3EqualTo(String value) { + addCriterion("ext_3 =", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotEqualTo(String value) { + addCriterion("ext_3 <>", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3GreaterThan(String value) { + addCriterion("ext_3 >", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3GreaterThanOrEqualTo(String value) { + addCriterion("ext_3 >=", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3LessThan(String value) { + addCriterion("ext_3 <", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3LessThanOrEqualTo(String value) { + addCriterion("ext_3 <=", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3Like(String value) { + addCriterion("ext_3 like", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotLike(String value) { + addCriterion("ext_3 not like", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3In(List values) { + addCriterion("ext_3 in", values, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotIn(List values) { + addCriterion("ext_3 not in", values, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3Between(String value1, String value2) { + addCriterion("ext_3 between", value1, value2, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotBetween(String value1, String value2) { + addCriterion("ext_3 not between", value1, value2, "ext3"); + return (Criteria) this; + } + } + + /** + */ + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/entity/StudentItemGrade.java b/service/src/main/java/com/cg/entity/StudentItemGrade.java new file mode 100644 index 0000000..b5fc166 --- /dev/null +++ b/service/src/main/java/com/cg/entity/StudentItemGrade.java @@ -0,0 +1,306 @@ +package com.cg.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + * student_item_grade + * @author + */ +/** + * + * 代码由工具生成 + * + **/ +public class StudentItemGrade implements Serializable { + /** + * 主键 + */ + private Integer id; + + /** + * 学生编码 + */ + private Long studentId; + + /** + * 项目编码 + */ + private Long itemId; + + /** + * 项目名称 + */ + private String itemName; + + /** + * 1:秒 2:分 3:米 4:分数 + */ + private Integer gradeType; + + /** + * 一级成绩第一部分 + */ + private BigDecimal firstGradeOne; + + /** + * 一级成绩第二部分 + */ + private BigDecimal firstGradeTwo; + + /** + * 二级成绩第一部分 + */ + private BigDecimal secondGradeOne; + + /** + * 二级成绩第二部分 + */ + private BigDecimal secondGradeTwo; + + /** + * 分数 + */ + private BigDecimal grade; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 更新时间 + */ + private Date updateTime; + + /** + * 状态:1:正常 0:删除 + */ + private Integer status; + + /** + * ext_1 + */ + private String ext1; + + /** + * ext_2 + */ + private String ext2; + + /** + * ext_3 + */ + private String ext3; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getStudentId() { + return studentId; + } + + public void setStudentId(Long studentId) { + this.studentId = studentId; + } + + public Long getItemId() { + return itemId; + } + + public void setItemId(Long itemId) { + this.itemId = itemId; + } + + public String getItemName() { + return itemName; + } + + public void setItemName(String itemName) { + this.itemName = itemName; + } + + public Integer getGradeType() { + return gradeType; + } + + public void setGradeType(Integer gradeType) { + this.gradeType = gradeType; + } + + public BigDecimal getFirstGradeOne() { + return firstGradeOne; + } + + public void setFirstGradeOne(BigDecimal firstGradeOne) { + this.firstGradeOne = firstGradeOne; + } + + public BigDecimal getFirstGradeTwo() { + return firstGradeTwo; + } + + public void setFirstGradeTwo(BigDecimal firstGradeTwo) { + this.firstGradeTwo = firstGradeTwo; + } + + public BigDecimal getSecondGradeOne() { + return secondGradeOne; + } + + public void setSecondGradeOne(BigDecimal secondGradeOne) { + this.secondGradeOne = secondGradeOne; + } + + public BigDecimal getSecondGradeTwo() { + return secondGradeTwo; + } + + public void setSecondGradeTwo(BigDecimal secondGradeTwo) { + this.secondGradeTwo = secondGradeTwo; + } + + public BigDecimal getGrade() { + return grade; + } + + public void setGrade(BigDecimal grade) { + this.grade = grade; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getExt1() { + return ext1; + } + + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + public String getExt2() { + return ext2; + } + + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + public String getExt3() { + return ext3; + } + + public void setExt3(String ext3) { + this.ext3 = ext3; + } + + @Override + public boolean equals(Object that) { + if (this == that) { + return true; + } + if (that == null) { + return false; + } + if (getClass() != that.getClass()) { + return false; + } + StudentItemGrade other = (StudentItemGrade) that; + return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) + && (this.getStudentId() == null ? other.getStudentId() == null : this.getStudentId().equals(other.getStudentId())) + && (this.getItemId() == null ? other.getItemId() == null : this.getItemId().equals(other.getItemId())) + && (this.getItemName() == null ? other.getItemName() == null : this.getItemName().equals(other.getItemName())) + && (this.getGradeType() == null ? other.getGradeType() == null : this.getGradeType().equals(other.getGradeType())) + && (this.getFirstGradeOne() == null ? other.getFirstGradeOne() == null : this.getFirstGradeOne().equals(other.getFirstGradeOne())) + && (this.getFirstGradeTwo() == null ? other.getFirstGradeTwo() == null : this.getFirstGradeTwo().equals(other.getFirstGradeTwo())) + && (this.getSecondGradeOne() == null ? other.getSecondGradeOne() == null : this.getSecondGradeOne().equals(other.getSecondGradeOne())) + && (this.getSecondGradeTwo() == null ? other.getSecondGradeTwo() == null : this.getSecondGradeTwo().equals(other.getSecondGradeTwo())) + && (this.getGrade() == null ? other.getGrade() == null : this.getGrade().equals(other.getGrade())) + && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) + && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) + && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) + && (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) + && (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) + && (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); + result = prime * result + ((getStudentId() == null) ? 0 : getStudentId().hashCode()); + result = prime * result + ((getItemId() == null) ? 0 : getItemId().hashCode()); + result = prime * result + ((getItemName() == null) ? 0 : getItemName().hashCode()); + result = prime * result + ((getGradeType() == null) ? 0 : getGradeType().hashCode()); + result = prime * result + ((getFirstGradeOne() == null) ? 0 : getFirstGradeOne().hashCode()); + result = prime * result + ((getFirstGradeTwo() == null) ? 0 : getFirstGradeTwo().hashCode()); + result = prime * result + ((getSecondGradeOne() == null) ? 0 : getSecondGradeOne().hashCode()); + result = prime * result + ((getSecondGradeTwo() == null) ? 0 : getSecondGradeTwo().hashCode()); + result = prime * result + ((getGrade() == null) ? 0 : getGrade().hashCode()); + result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); + result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); + result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); + result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); + result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); + result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); + return result; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append(getClass().getSimpleName()); + sb.append(" ["); + sb.append("Hash = ").append(hashCode()); + sb.append(", id=").append(id); + sb.append(", studentId=").append(studentId); + sb.append(", itemId=").append(itemId); + sb.append(", itemName=").append(itemName); + sb.append(", gradeType=").append(gradeType); + sb.append(", firstGradeOne=").append(firstGradeOne); + sb.append(", firstGradeTwo=").append(firstGradeTwo); + sb.append(", secondGradeOne=").append(secondGradeOne); + sb.append(", secondGradeTwo=").append(secondGradeTwo); + sb.append(", grade=").append(grade); + sb.append(", createTime=").append(createTime); + sb.append(", updateTime=").append(updateTime); + sb.append(", status=").append(status); + sb.append(", ext1=").append(ext1); + sb.append(", ext2=").append(ext2); + sb.append(", ext3=").append(ext3); + sb.append(", serialVersionUID=").append(serialVersionUID); + sb.append("]"); + return sb.toString(); + } +} \ No newline at end of file diff --git a/service/src/main/java/com/cg/entity/StudentItemGradeExample.java b/service/src/main/java/com/cg/entity/StudentItemGradeExample.java new file mode 100644 index 0000000..4813f5e --- /dev/null +++ b/service/src/main/java/com/cg/entity/StudentItemGradeExample.java @@ -0,0 +1,1224 @@ +package com.cg.entity; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class StudentItemGradeExample { + protected String orderByClause; + + protected boolean distinct; + + protected List oredCriteria; + + private Integer limit; + + private Long offset; + + public StudentItemGradeExample() { + oredCriteria = new ArrayList(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + public void setLimit(Integer limit) { + this.limit = limit; + } + + public Integer getLimit() { + return limit; + } + + public void setOffset(Long offset) { + this.offset = offset; + } + + public Long getOffset() { + return offset; + } + + protected abstract static class GeneratedCriteria { + protected List criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List getAllCriteria() { + return criteria; + } + + public List getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andStudentIdIsNull() { + addCriterion("student_id is null"); + return (Criteria) this; + } + + public Criteria andStudentIdIsNotNull() { + addCriterion("student_id is not null"); + return (Criteria) this; + } + + public Criteria andStudentIdEqualTo(Long value) { + addCriterion("student_id =", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdNotEqualTo(Long value) { + addCriterion("student_id <>", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdGreaterThan(Long value) { + addCriterion("student_id >", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdGreaterThanOrEqualTo(Long value) { + addCriterion("student_id >=", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdLessThan(Long value) { + addCriterion("student_id <", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdLessThanOrEqualTo(Long value) { + addCriterion("student_id <=", value, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdIn(List values) { + addCriterion("student_id in", values, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdNotIn(List values) { + addCriterion("student_id not in", values, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdBetween(Long value1, Long value2) { + addCriterion("student_id between", value1, value2, "studentId"); + return (Criteria) this; + } + + public Criteria andStudentIdNotBetween(Long value1, Long value2) { + addCriterion("student_id not between", value1, value2, "studentId"); + return (Criteria) this; + } + + public Criteria andItemIdIsNull() { + addCriterion("item_id is null"); + return (Criteria) this; + } + + public Criteria andItemIdIsNotNull() { + addCriterion("item_id is not null"); + return (Criteria) this; + } + + public Criteria andItemIdEqualTo(Long value) { + addCriterion("item_id =", value, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdNotEqualTo(Long value) { + addCriterion("item_id <>", value, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdGreaterThan(Long value) { + addCriterion("item_id >", value, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdGreaterThanOrEqualTo(Long value) { + addCriterion("item_id >=", value, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdLessThan(Long value) { + addCriterion("item_id <", value, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdLessThanOrEqualTo(Long value) { + addCriterion("item_id <=", value, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdIn(List values) { + addCriterion("item_id in", values, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdNotIn(List values) { + addCriterion("item_id not in", values, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdBetween(Long value1, Long value2) { + addCriterion("item_id between", value1, value2, "itemId"); + return (Criteria) this; + } + + public Criteria andItemIdNotBetween(Long value1, Long value2) { + addCriterion("item_id not between", value1, value2, "itemId"); + return (Criteria) this; + } + + public Criteria andItemNameIsNull() { + addCriterion("item_name is null"); + return (Criteria) this; + } + + public Criteria andItemNameIsNotNull() { + addCriterion("item_name is not null"); + return (Criteria) this; + } + + public Criteria andItemNameEqualTo(String value) { + addCriterion("item_name =", value, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameNotEqualTo(String value) { + addCriterion("item_name <>", value, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameGreaterThan(String value) { + addCriterion("item_name >", value, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameGreaterThanOrEqualTo(String value) { + addCriterion("item_name >=", value, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameLessThan(String value) { + addCriterion("item_name <", value, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameLessThanOrEqualTo(String value) { + addCriterion("item_name <=", value, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameLike(String value) { + addCriterion("item_name like", value, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameNotLike(String value) { + addCriterion("item_name not like", value, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameIn(List values) { + addCriterion("item_name in", values, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameNotIn(List values) { + addCriterion("item_name not in", values, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameBetween(String value1, String value2) { + addCriterion("item_name between", value1, value2, "itemName"); + return (Criteria) this; + } + + public Criteria andItemNameNotBetween(String value1, String value2) { + addCriterion("item_name not between", value1, value2, "itemName"); + return (Criteria) this; + } + + public Criteria andGradeTypeIsNull() { + addCriterion("grade_type is null"); + return (Criteria) this; + } + + public Criteria andGradeTypeIsNotNull() { + addCriterion("grade_type is not null"); + return (Criteria) this; + } + + public Criteria andGradeTypeEqualTo(Integer value) { + addCriterion("grade_type =", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeNotEqualTo(Integer value) { + addCriterion("grade_type <>", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeGreaterThan(Integer value) { + addCriterion("grade_type >", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeGreaterThanOrEqualTo(Integer value) { + addCriterion("grade_type >=", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeLessThan(Integer value) { + addCriterion("grade_type <", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeLessThanOrEqualTo(Integer value) { + addCriterion("grade_type <=", value, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeIn(List values) { + addCriterion("grade_type in", values, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeNotIn(List values) { + addCriterion("grade_type not in", values, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeBetween(Integer value1, Integer value2) { + addCriterion("grade_type between", value1, value2, "gradeType"); + return (Criteria) this; + } + + public Criteria andGradeTypeNotBetween(Integer value1, Integer value2) { + addCriterion("grade_type not between", value1, value2, "gradeType"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneIsNull() { + addCriterion("first_grade_one is null"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneIsNotNull() { + addCriterion("first_grade_one is not null"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneEqualTo(BigDecimal value) { + addCriterion("first_grade_one =", value, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneNotEqualTo(BigDecimal value) { + addCriterion("first_grade_one <>", value, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneGreaterThan(BigDecimal value) { + addCriterion("first_grade_one >", value, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneGreaterThanOrEqualTo(BigDecimal value) { + addCriterion("first_grade_one >=", value, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneLessThan(BigDecimal value) { + addCriterion("first_grade_one <", value, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneLessThanOrEqualTo(BigDecimal value) { + addCriterion("first_grade_one <=", value, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneIn(List values) { + addCriterion("first_grade_one in", values, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneNotIn(List values) { + addCriterion("first_grade_one not in", values, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("first_grade_one between", value1, value2, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeOneNotBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("first_grade_one not between", value1, value2, "firstGradeOne"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoIsNull() { + addCriterion("first_grade_two is null"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoIsNotNull() { + addCriterion("first_grade_two is not null"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoEqualTo(BigDecimal value) { + addCriterion("first_grade_two =", value, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoNotEqualTo(BigDecimal value) { + addCriterion("first_grade_two <>", value, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoGreaterThan(BigDecimal value) { + addCriterion("first_grade_two >", value, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoGreaterThanOrEqualTo(BigDecimal value) { + addCriterion("first_grade_two >=", value, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoLessThan(BigDecimal value) { + addCriterion("first_grade_two <", value, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoLessThanOrEqualTo(BigDecimal value) { + addCriterion("first_grade_two <=", value, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoIn(List values) { + addCriterion("first_grade_two in", values, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoNotIn(List values) { + addCriterion("first_grade_two not in", values, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("first_grade_two between", value1, value2, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andFirstGradeTwoNotBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("first_grade_two not between", value1, value2, "firstGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneIsNull() { + addCriterion("second_grade_one is null"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneIsNotNull() { + addCriterion("second_grade_one is not null"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneEqualTo(BigDecimal value) { + addCriterion("second_grade_one =", value, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneNotEqualTo(BigDecimal value) { + addCriterion("second_grade_one <>", value, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneGreaterThan(BigDecimal value) { + addCriterion("second_grade_one >", value, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneGreaterThanOrEqualTo(BigDecimal value) { + addCriterion("second_grade_one >=", value, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneLessThan(BigDecimal value) { + addCriterion("second_grade_one <", value, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneLessThanOrEqualTo(BigDecimal value) { + addCriterion("second_grade_one <=", value, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneIn(List values) { + addCriterion("second_grade_one in", values, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneNotIn(List values) { + addCriterion("second_grade_one not in", values, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("second_grade_one between", value1, value2, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeOneNotBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("second_grade_one not between", value1, value2, "secondGradeOne"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoIsNull() { + addCriterion("second_grade_two is null"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoIsNotNull() { + addCriterion("second_grade_two is not null"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoEqualTo(BigDecimal value) { + addCriterion("second_grade_two =", value, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoNotEqualTo(BigDecimal value) { + addCriterion("second_grade_two <>", value, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoGreaterThan(BigDecimal value) { + addCriterion("second_grade_two >", value, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoGreaterThanOrEqualTo(BigDecimal value) { + addCriterion("second_grade_two >=", value, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoLessThan(BigDecimal value) { + addCriterion("second_grade_two <", value, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoLessThanOrEqualTo(BigDecimal value) { + addCriterion("second_grade_two <=", value, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoIn(List values) { + addCriterion("second_grade_two in", values, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoNotIn(List values) { + addCriterion("second_grade_two not in", values, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("second_grade_two between", value1, value2, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andSecondGradeTwoNotBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("second_grade_two not between", value1, value2, "secondGradeTwo"); + return (Criteria) this; + } + + public Criteria andGradeIsNull() { + addCriterion("grade is null"); + return (Criteria) this; + } + + public Criteria andGradeIsNotNull() { + addCriterion("grade is not null"); + return (Criteria) this; + } + + public Criteria andGradeEqualTo(BigDecimal value) { + addCriterion("grade =", value, "grade"); + return (Criteria) this; + } + + public Criteria andGradeNotEqualTo(BigDecimal value) { + addCriterion("grade <>", value, "grade"); + return (Criteria) this; + } + + public Criteria andGradeGreaterThan(BigDecimal value) { + addCriterion("grade >", value, "grade"); + return (Criteria) this; + } + + public Criteria andGradeGreaterThanOrEqualTo(BigDecimal value) { + addCriterion("grade >=", value, "grade"); + return (Criteria) this; + } + + public Criteria andGradeLessThan(BigDecimal value) { + addCriterion("grade <", value, "grade"); + return (Criteria) this; + } + + public Criteria andGradeLessThanOrEqualTo(BigDecimal value) { + addCriterion("grade <=", value, "grade"); + return (Criteria) this; + } + + public Criteria andGradeIn(List values) { + addCriterion("grade in", values, "grade"); + return (Criteria) this; + } + + public Criteria andGradeNotIn(List values) { + addCriterion("grade not in", values, "grade"); + return (Criteria) this; + } + + public Criteria andGradeBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("grade between", value1, value2, "grade"); + return (Criteria) this; + } + + public Criteria andGradeNotBetween(BigDecimal value1, BigDecimal value2) { + addCriterion("grade not between", value1, value2, "grade"); + return (Criteria) this; + } + + public Criteria andCreateTimeIsNull() { + addCriterion("create_time is null"); + return (Criteria) this; + } + + public Criteria andCreateTimeIsNotNull() { + addCriterion("create_time is not null"); + return (Criteria) this; + } + + public Criteria andCreateTimeEqualTo(Date value) { + addCriterion("create_time =", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotEqualTo(Date value) { + addCriterion("create_time <>", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeGreaterThan(Date value) { + addCriterion("create_time >", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { + addCriterion("create_time >=", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeLessThan(Date value) { + addCriterion("create_time <", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeLessThanOrEqualTo(Date value) { + addCriterion("create_time <=", value, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeIn(List values) { + addCriterion("create_time in", values, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotIn(List values) { + addCriterion("create_time not in", values, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeBetween(Date value1, Date value2) { + addCriterion("create_time between", value1, value2, "createTime"); + return (Criteria) this; + } + + public Criteria andCreateTimeNotBetween(Date value1, Date value2) { + addCriterion("create_time not between", value1, value2, "createTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIsNull() { + addCriterion("update_time is null"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIsNotNull() { + addCriterion("update_time is not null"); + return (Criteria) this; + } + + public Criteria andUpdateTimeEqualTo(Date value) { + addCriterion("update_time =", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotEqualTo(Date value) { + addCriterion("update_time <>", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeGreaterThan(Date value) { + addCriterion("update_time >", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { + addCriterion("update_time >=", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeLessThan(Date value) { + addCriterion("update_time <", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { + addCriterion("update_time <=", value, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeIn(List values) { + addCriterion("update_time in", values, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotIn(List values) { + addCriterion("update_time not in", values, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeBetween(Date value1, Date value2) { + addCriterion("update_time between", value1, value2, "updateTime"); + return (Criteria) this; + } + + public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { + addCriterion("update_time not between", value1, value2, "updateTime"); + return (Criteria) this; + } + + public Criteria andStatusIsNull() { + addCriterion("`status` is null"); + return (Criteria) this; + } + + public Criteria andStatusIsNotNull() { + addCriterion("`status` is not null"); + return (Criteria) this; + } + + public Criteria andStatusEqualTo(Integer value) { + addCriterion("`status` =", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotEqualTo(Integer value) { + addCriterion("`status` <>", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusGreaterThan(Integer value) { + addCriterion("`status` >", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusGreaterThanOrEqualTo(Integer value) { + addCriterion("`status` >=", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLessThan(Integer value) { + addCriterion("`status` <", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLessThanOrEqualTo(Integer value) { + addCriterion("`status` <=", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusIn(List values) { + addCriterion("`status` in", values, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotIn(List values) { + addCriterion("`status` not in", values, "status"); + return (Criteria) this; + } + + public Criteria andStatusBetween(Integer value1, Integer value2) { + addCriterion("`status` between", value1, value2, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotBetween(Integer value1, Integer value2) { + addCriterion("`status` not between", value1, value2, "status"); + return (Criteria) this; + } + + public Criteria andExt1IsNull() { + addCriterion("ext_1 is null"); + return (Criteria) this; + } + + public Criteria andExt1IsNotNull() { + addCriterion("ext_1 is not null"); + return (Criteria) this; + } + + public Criteria andExt1EqualTo(String value) { + addCriterion("ext_1 =", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotEqualTo(String value) { + addCriterion("ext_1 <>", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1GreaterThan(String value) { + addCriterion("ext_1 >", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1GreaterThanOrEqualTo(String value) { + addCriterion("ext_1 >=", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1LessThan(String value) { + addCriterion("ext_1 <", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1LessThanOrEqualTo(String value) { + addCriterion("ext_1 <=", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1Like(String value) { + addCriterion("ext_1 like", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotLike(String value) { + addCriterion("ext_1 not like", value, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1In(List values) { + addCriterion("ext_1 in", values, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotIn(List values) { + addCriterion("ext_1 not in", values, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1Between(String value1, String value2) { + addCriterion("ext_1 between", value1, value2, "ext1"); + return (Criteria) this; + } + + public Criteria andExt1NotBetween(String value1, String value2) { + addCriterion("ext_1 not between", value1, value2, "ext1"); + return (Criteria) this; + } + + public Criteria andExt2IsNull() { + addCriterion("ext_2 is null"); + return (Criteria) this; + } + + public Criteria andExt2IsNotNull() { + addCriterion("ext_2 is not null"); + return (Criteria) this; + } + + public Criteria andExt2EqualTo(String value) { + addCriterion("ext_2 =", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotEqualTo(String value) { + addCriterion("ext_2 <>", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2GreaterThan(String value) { + addCriterion("ext_2 >", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2GreaterThanOrEqualTo(String value) { + addCriterion("ext_2 >=", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2LessThan(String value) { + addCriterion("ext_2 <", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2LessThanOrEqualTo(String value) { + addCriterion("ext_2 <=", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2Like(String value) { + addCriterion("ext_2 like", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotLike(String value) { + addCriterion("ext_2 not like", value, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2In(List values) { + addCriterion("ext_2 in", values, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotIn(List values) { + addCriterion("ext_2 not in", values, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2Between(String value1, String value2) { + addCriterion("ext_2 between", value1, value2, "ext2"); + return (Criteria) this; + } + + public Criteria andExt2NotBetween(String value1, String value2) { + addCriterion("ext_2 not between", value1, value2, "ext2"); + return (Criteria) this; + } + + public Criteria andExt3IsNull() { + addCriterion("ext_3 is null"); + return (Criteria) this; + } + + public Criteria andExt3IsNotNull() { + addCriterion("ext_3 is not null"); + return (Criteria) this; + } + + public Criteria andExt3EqualTo(String value) { + addCriterion("ext_3 =", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotEqualTo(String value) { + addCriterion("ext_3 <>", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3GreaterThan(String value) { + addCriterion("ext_3 >", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3GreaterThanOrEqualTo(String value) { + addCriterion("ext_3 >=", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3LessThan(String value) { + addCriterion("ext_3 <", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3LessThanOrEqualTo(String value) { + addCriterion("ext_3 <=", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3Like(String value) { + addCriterion("ext_3 like", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotLike(String value) { + addCriterion("ext_3 not like", value, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3In(List values) { + addCriterion("ext_3 in", values, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotIn(List values) { + addCriterion("ext_3 not in", values, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3Between(String value1, String value2) { + addCriterion("ext_3 between", value1, value2, "ext3"); + return (Criteria) this; + } + + public Criteria andExt3NotBetween(String value1, String value2) { + addCriterion("ext_3 not between", value1, value2, "ext3"); + return (Criteria) this; + } + } + + /** + */ + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} \ No newline at end of file