wujianwei
2025-09-04 80821b70c41a06952fa50207a9a82fa289e0152e
service/src/main/resources/mapper/cwgl/EstimatedReceivableBillLogMapper.xml
@@ -10,10 +10,11 @@
        <result property="createBy"    column="create_by"    />
        <result property="createTime"    column="create_time"    />
        <result property="operation"    column="operation"    />
        <result property="fileName"    column="file_name"    />
    </resultMap>
    <sql id="selectEstimatedReceivableBillLogVo">
        select thisTab.id, thisTab.bill_id, thisTab.create_by, thisTab.create_time, thisTab.operation from estimated_receivable_bill_log AS thisTab
        select thisTab.id, thisTab.bill_id, thisTab.create_by, thisTab.create_time, thisTab.operation, thisTab.file_name from estimated_receivable_bill_log AS thisTab
    </sql>
    <sql id="selectEstimatedReceivableBillLogVoCount">
        select count(0) from estimated_receivable_bill_log as thisTab
@@ -53,12 +54,14 @@
            <if test="createBy != null">create_by,</if>
            <if test="createTime != null">create_time,</if>
            <if test="operation != null">operation,</if>
            <if test="fileName != null">file_name,</if>
         </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="billId != null">#{billId},</if>
            <if test="createBy != null">#{createBy},</if>
            <if test="createTime != null">#{createTime},</if>
            <if test="operation != null">#{operation},</if>
            <if test="fileName != null">#{fileName},</if>
         </trim>
    </insert>