Commit 444fd595 authored by 祁正's avatar 祁正

改bug

parent c007109f
...@@ -13,6 +13,12 @@ public class FyglDailyReimbursementDetailDTO { ...@@ -13,6 +13,12 @@ public class FyglDailyReimbursementDetailDTO {
private String projectNumber; private String projectNumber;
private String projectType; private String projectType;
private String reimbursement; private String reimbursement;
//提交人
private String createBy;
//提交时间
private String updateTime;
//项目负责人 //项目负责人
private String userName; private String userName;
......
...@@ -37,6 +37,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -37,6 +37,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="reimbursement" column="reimbursement" /> <result property="reimbursement" column="reimbursement" />
<result property="projectType" column="project_type" /> <result property="projectType" column="project_type" />
<result property="userName" column="user_name" /> <result property="userName" column="user_name" />
<result property="createBy" column="create_by" />
<result property="updateTime" column="update_time" />
</resultMap> </resultMap>
<resultMap type="com.ruoyi.domain.dto.FyglDailyReimbursementDetailitemListDTO" id="FyglDailyReimbursementDetailItemResult"> <resultMap type="com.ruoyi.domain.dto.FyglDailyReimbursementDetailitemListDTO" id="FyglDailyReimbursementDetailItemResult">
...@@ -87,6 +89,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -87,6 +89,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
r1.id, r1.id,
r1.serial_number, r1.serial_number,
r1.reimbursement, r1.reimbursement,
r2.create_by,
r2.update_time,
p.project_name, p.project_name,
p.project_number, p.project_number,
p.project_type, p.project_type,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment