zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.changhong.epc.form.mapper.tenant.asset;
 
import com.changhong.epc.bean.tenant.asset.FixedSummary;
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
 
public interface FixedSummaryMapper extends MybatisBaseMapper<FixedSummary> {
 
    /**
     * 获得部门折旧信息
     * @param fixedSummary
     * @return
     */
    FixedSummary getOneFixedSummary(FixedSummary fixedSummary);
 
    /**
     * 修改折旧信息
     * @param fixedSummary
     */
    void updateFixedSummary(FixedSummary fixedSummary);
}