2021与蓝度共同重构项目,服务端
liuhaonan
2022-03-11 e5f711997c3247dc74d5a820673cc911bd2fbcf4
dao/src/main/resources/mapper/LedSFileMapper.xml
@@ -5,20 +5,22 @@
<mapper namespace="com.sandu.ximon.dao.mapper.LedSFileMapper">
    <resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.LedSFile">
            <id property="fileId" column="file_id" jdbcType="BIGINT"/>
            <result property="cilentId" column="cilent_id" jdbcType="BIGINT"/>
            <result property="userName" column="user_name" jdbcType="VARCHAR"/>
            <result property="originName" column="origin_name" jdbcType="VARCHAR"/>
            <result property="fileUrl" column="file_url" jdbcType="VARCHAR"/>
            <result property="fileType" column="file_type" jdbcType="VARCHAR"/>
            <result property="fileSize" column="file_size" jdbcType="BIGINT"/>
            <result property="height" column="height" jdbcType="INTEGER"/>
            <result property="width" column="width" jdbcType="INTEGER"/>
            <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
        <id property="fileId" column="file_id" jdbcType="BIGINT"/>
        <result property="cilentId" column="cilent_id" jdbcType="BIGINT"/>
        <result property="userName" column="user_name" jdbcType="VARCHAR"/>
        <result property="originName" column="origin_name" jdbcType="VARCHAR"/>
        <result property="fileUrl" column="file_url" jdbcType="VARCHAR"/>
        <result property="screenShot" column="screen_shot" jdbcType="VARCHAR"/>
        <result property="fileType" column="file_type" jdbcType="VARCHAR"/>
        <result property="fileSize" column="file_size" jdbcType="BIGINT"/>
        <result property="height" column="height" jdbcType="INTEGER"/>
        <result property="width" column="width" jdbcType="INTEGER"/>
        <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
    </resultMap>
    <sql id="Base_Column_List">
        file_id,cilent_id,user_name,
        file_id
        ,cilent_id,user_name,
        origin_name,file_url,file_type,
        file_size,height,width,
        create_time