12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.persagy.dc.file.dao.FileMapper">
- <resultMap id="FileMap" type="com.persagy.dc.file.model.FileInfo">
- <result column="id" property="id"/>
- <result column="group_code" property="groupCode"/>
- <result column="file_name" property="fileName"/>
- <result column="file_type" property="fileType"/>
- <result column="file_bucket" property="fileBucket"/>
- <result column="file_path" property="filePath"/>
- <result column="file_size" property="fileSize"/>
- <result column="business_id" property="businessId"/>
- <result column="expire_date" property="expireDate"/>
- <result column="ts" property="ts"/>
- <result column="creator" property="creator"/>
- <result column="creation_time" property="creationTime"/>
- <result column="modifier" property="modifier"/>
- <result column="modified_time" property="modifiedTime"/>
- <result column="valid" property="valid"/>
- </resultMap>
- </mapper>
|