From ed36af4d4cc5feac72a384d85f9032fc6dc1223a Mon Sep 17 00:00:00 2001 From: kongzy <kongzy> Date: 星期六, 14 九月 2024 17:01:55 +0800 Subject: [PATCH] update --- hazmat-system/src/main/resources/mapper/system/HzProductBasicMapper.xml | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/hazmat-system/src/main/resources/mapper/system/HzProductBasicMapper.xml b/hazmat-system/src/main/resources/mapper/system/HzProductBasicMapper.xml index fe4fccf..c1493ec 100644 --- a/hazmat-system/src/main/resources/mapper/system/HzProductBasicMapper.xml +++ b/hazmat-system/src/main/resources/mapper/system/HzProductBasicMapper.xml @@ -25,12 +25,13 @@ <result property="updateBy" column="update_by" /> <result property="updateTime" column="update_time" /> <result property="remark" column="remark" /> + <result property="maxEntry" column="max_entry" /> <result property="companyName" column="company_name" /> </resultMap> <sql id="selectProductBasicVo"> select a.id, a.name, a.cas, a.product_type, a.min_package,a.kind,a.product_character,a.supplier,a.manufacturer,a.product_format,a.metering, - a.unit,a.price,a.per_box,a.product_sn,a.company_id,a.version, a.create_by, a.create_time, a.update_by, a.update_time, a.remark,b.name as company_name + a.unit,a.price,a.per_box,a.product_sn,a.company_id,a.version, a.create_by, a.create_time, a.update_by, a.update_time, a.remark,a.max_entry,b.name as company_name from hz_product_basic a left join sys_company b on b.id=a.company_id </sql> -- Gitblit v1.9.2