Commit b9934413 by huluobin

Merge branch '3.0' into 3.0-refactor

# Conflicts:
#	cost-service/src/main/java/com/blt/other/module/cost/dao/CostDao.java
parents f5c906d4 12c22bb3
......@@ -79,4 +79,6 @@ public interface CostDao extends BaseMapper<CostDomain> {
//管理成本的费用单
List<CostDomain> manageCostList(ManageCostListReq req);
List<CostDomain> manageCostList(ManageCostListReq req);
}
......@@ -351,4 +351,12 @@
where ct.is_manage_cost = 1
</select>
<select id="manageCostList" resultType="com.blt.other.module.cost.model.CostDomain">
select *
from cost t1
left join cost_type ct on t1.type_id = ct.id
where t1.cost_status = 4
and ct.is_manage_cost = 1
</select>
</mapper>
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