commit | author | age
|
a18bfa
|
1 |
package com.changhong.epc.parsing.mapper.tenant.asset; |
Z |
2 |
|
|
3 |
import com.changhong.epc.bean.form.SectoralAssets; |
|
4 |
import org.apache.ibatis.annotations.Param; |
|
5 |
|
|
6 |
/** |
|
7 |
* 部门折旧信息汇总 |
|
8 |
*/ |
|
9 |
public interface SectoralAssetsMapper { |
|
10 |
|
|
11 |
SectoralAssets findOrgAssert(@Param("date") String date |
|
12 |
, @Param("orgCode") String orgCode); |
|
13 |
|
|
14 |
int updateBookKeepingState(@Param("state") String state, @Param("id") String id, @Param("date") String date, @Param("number") String number); |
|
15 |
|
|
16 |
} |