package com.yeshi.makemoney.app.dao.money;
|
|
import com.yeshi.makemoney.app.entity.money.UserMoneyType;
|
import org.springframework.stereotype.Repository;
|
import java.util.List;
|
import java.util.Date;
|
import org.apache.ibatis.annotations.Param;
|
|
import org.yeshi.utils.mybatis.BaseMapper;
|
import com.yeshi.makemoney.app.entity.money.UserMoneyRecord;
|
|
@Repository
|
public interface UserMoneyRecordMapper extends BaseMapper<UserMoneyRecord> {
|
|
UserMoneyRecord selectByPrimaryKeyForUpdate(@Param("id") java.lang.Long id);
|
|
List<UserMoneyRecord> list(@Param("query") DaoQuery query);
|
|
long count(@Param("query") DaoQuery query);
|
|
public static class DaoQuery{
|
public Long uid;
|
public UserMoneyType type;
|
public String serialNo;
|
public Boolean add;
|
public Boolean show;
|
public long start;
|
public int count;
|
public List<String> sortList;
|
}
|
|
}
|