| | |
| | | <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 |
| | |
| | | <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> |
| | | |