|
|
@@ -11,15 +11,15 @@ import org.apache.ibatis.annotations.Select;
|
|
|
|
|
|
/**
|
|
|
* 用户账单Mapper接口
|
|
|
- *
|
|
|
+ *
|
|
|
* @author fs
|
|
|
* @date 2022-04-03
|
|
|
*/
|
|
|
-public interface FsUserBillScrmMapper
|
|
|
+public interface FsUserBillScrmMapper
|
|
|
{
|
|
|
/**
|
|
|
* 查询用户账单
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 用户账单ID
|
|
|
* @return 用户账单
|
|
|
*/
|
|
|
@@ -27,7 +27,7 @@ public interface FsUserBillScrmMapper
|
|
|
|
|
|
/**
|
|
|
* 查询用户账单列表
|
|
|
- *
|
|
|
+ *
|
|
|
* @param fsUserBill 用户账单
|
|
|
* @return 用户账单集合
|
|
|
*/
|
|
|
@@ -35,7 +35,7 @@ public interface FsUserBillScrmMapper
|
|
|
|
|
|
/**
|
|
|
* 新增用户账单
|
|
|
- *
|
|
|
+ *
|
|
|
* @param fsUserBill 用户账单
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@@ -43,7 +43,7 @@ public interface FsUserBillScrmMapper
|
|
|
|
|
|
/**
|
|
|
* 修改用户账单
|
|
|
- *
|
|
|
+ *
|
|
|
* @param fsUserBill 用户账单
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@@ -51,7 +51,7 @@ public interface FsUserBillScrmMapper
|
|
|
|
|
|
/**
|
|
|
* 删除用户账单
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 用户账单ID
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@@ -59,7 +59,7 @@ public interface FsUserBillScrmMapper
|
|
|
|
|
|
/**
|
|
|
* 批量删除用户账单
|
|
|
- *
|
|
|
+ *
|
|
|
* @param ids 需要删除的数据ID
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@@ -77,7 +77,7 @@ public interface FsUserBillScrmMapper
|
|
|
"<if test = 'maps.category != null and maps.category != \"\" '> " +
|
|
|
"and category =#{maps.category} " +
|
|
|
"</if>" +
|
|
|
- " order by id desc "+
|
|
|
+ " order by bill_id desc "+
|
|
|
"</script>"})
|
|
|
List<FsUserBillScrm> selectFsUserBillListQuery(@Param("maps") FsUserBillQueryParam param);
|
|
|
@Select({"<script> " +
|
|
|
@@ -95,7 +95,7 @@ public interface FsUserBillScrmMapper
|
|
|
"<if test = 'maps.endTime != null and maps.endTime != \"\" '> " +
|
|
|
"and date_format(b.create_time,'%y%m%d') <= date_format(#{maps.endTime},'%y%m%d') " +
|
|
|
"</if>" +
|
|
|
- " order by b.id desc "+
|
|
|
+ " order by b.bill_id desc "+
|
|
|
"</script>"})
|
|
|
List<FsUserBillVO> selectFsUserBillListVO(@Param("maps")FsUserBillParam fsUserBill);
|
|
|
@Select({"<script> " +
|