Commit 684662ce by huluobin

# update

parent 4d898e6c
...@@ -22,4 +22,6 @@ public class CostTypeBaseReq { ...@@ -22,4 +22,6 @@ public class CostTypeBaseReq {
@ApiModelProperty(value = "费用模版类型作用", hidden = true) @ApiModelProperty(value = "费用模版类型作用", hidden = true)
private Integer costTemplateType; private Integer costTemplateType;
private String typeName;
} }
...@@ -47,7 +47,9 @@ public interface IDepartmentReviewerService extends IService<DepartmentReviewer> ...@@ -47,7 +47,9 @@ public interface IDepartmentReviewerService extends IService<DepartmentReviewer>
*/ */
void removeDepartmentReviewer(RemoveDepartmentReviewerReq req); void removeDepartmentReviewer(RemoveDepartmentReviewerReq req);
//导入
void importExcel(DepartmentReviewerImportReq excel); void importExcel(DepartmentReviewerImportReq excel);
//导出
void exportExcel(HttpServletResponse response, DepartmentReviewerExportReq req); void exportExcel(HttpServletResponse response, DepartmentReviewerExportReq req);
} }
...@@ -31,6 +31,9 @@ ...@@ -31,6 +31,9 @@
<if test="req.accountingSubjectNo !=null and req.accountingSubjectNo!='' "> <if test="req.accountingSubjectNo !=null and req.accountingSubjectNo!='' ">
and t1.accounting_subject_no = #{req.accountingSubjectNo} and t1.accounting_subject_no = #{req.accountingSubjectNo}
</if> </if>
<if test="req.typeName !=null and req.typeName!='' ">
and t1.type_name = #{req.typeName}
</if>
</sql> </sql>
<select id="selectByNo" resultType="com.blt.other.database.model.CostTypeDomain"> <select id="selectByNo" resultType="com.blt.other.database.model.CostTypeDomain">
......
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