租赁增加字段

This commit is contained in:
zhou-hongcheng
2026-03-18 10:45:54 +08:00
parent e9df9c3841
commit f4cb9a5848
5 changed files with 59 additions and 1 deletions
@@ -19,6 +19,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="startDate" column="start_date" />
<result property="endDate" column="end_date" />
<result property="remark" column="remark" />
<result property="serviceItemsCode" column="service_items_code" />
<result property="serviceItemsName" column="service_items_name" />
<result property="secondSubjectCode" column="second_subject_code" />
<result property="secondSubjectName" column="second_subject_name" />
<result property="billDays" column="bill_days" />
<result property="billTime" column="bill_time" />
<result property="salesmanName" column="salesman_name" />
<result property="settlementCurrency" column="settlement_currency" />
<!-- 继承自BaseVOEntity的字段 -->
<result property="createTime" column="create_time" />
<result property="createBy" column="create_by" />
@@ -56,7 +64,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
a.second_subject_code,
a.second_subject_name,
a.service_items_name,
a.bill_days
a.bill_days,
a.bill_time,
a.salesman_name,
a.settlement_currency
from lease a
LEFT JOIN warehouse w ON a.warehouse_id = w.warehouse_id AND w.del_flag = 1
</sql>