TTrainMapper.xml 1.4 KB

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.sckw.system.dao.TTrainMapper">
  4. <resultMap id="BaseResultMap" type="com.sckw.system.model.TTrain">
  5. <!--@mbg.generated-->
  6. <!--@Table t_train-->
  7. <id column="id" jdbcType="BIGINT" property="id" />
  8. <result column="ent_id" jdbcType="BIGINT" property="entId" />
  9. <result column="name" jdbcType="VARCHAR" property="name" />
  10. <result column="start_date" jdbcType="DATE" property="startDate" />
  11. <result column="end_date" jdbcType="DATE" property="endDate" />
  12. <result column="exam_flag" jdbcType="TINYINT" property="examFlag" />
  13. <result column="description" jdbcType="VARCHAR" property="description" />
  14. <result column="status" jdbcType="INTEGER" property="status" />
  15. <result column="create_by" jdbcType="BIGINT" property="createBy" />
  16. <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
  17. <result column="update_by" jdbcType="BIGINT" property="updateBy" />
  18. <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
  19. <result column="del_flag" jdbcType="INTEGER" property="delFlag" />
  20. </resultMap>
  21. <sql id="Base_Column_List">
  22. <!--@mbg.generated-->
  23. id, ent_id, `name`, start_date, end_date, exam_flag, description, `status`, create_by,
  24. create_time, update_by, update_time, del_flag
  25. </sql>
  26. </mapper>