31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package com.jsh.erp.datasource.mappers;
|
|
|
|
import com.jsh.erp.datasource.entities.AccountItem;
|
|
import com.jsh.erp.datasource.entities.AccountItemExample;
|
|
import com.jsh.erp.datasource.vo.AccountItemVo4List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
public interface AccountItemMapperEx {
|
|
|
|
List<AccountItem> selectByConditionAccountItem(
|
|
@Param("name") String name,
|
|
@Param("type") Integer type,
|
|
@Param("remark") String remark,
|
|
@Param("offset") Integer offset,
|
|
@Param("rows") Integer rows);
|
|
|
|
Long countsByAccountItem(
|
|
@Param("name") String name,
|
|
@Param("type") Integer type,
|
|
@Param("remark") String remark);
|
|
|
|
List<AccountItemVo4List> getDetailList(
|
|
@Param("headerId") Long headerId);
|
|
|
|
int batchDeleteAccountItemByIds(@Param("updateTime") Date updateTime, @Param("updater") Long updater, @Param("ids") String[] ids);
|
|
|
|
List<AccountItem> getAccountItemListByAccountIds(@Param("accountIds") String[] accountIds);
|
|
} |