添加盛安豆字段

This commit is contained in:
yangjun 2024-08-08 15:09:36 +08:00
parent 00ff45b49d
commit 4bb5dbfa67
3 changed files with 9 additions and 2 deletions

View File

@ -79,6 +79,7 @@ public class AppUserMoneyController {
userMoneyResult.setMoney(userMoney.getMoney()); userMoneyResult.setMoney(userMoney.getMoney());
userMoneyResult.setCashDeposit(userMoney.getCashDeposit()); userMoneyResult.setCashDeposit(userMoney.getCashDeposit());
userMoneyResult.setId(userMoney.getId()); userMoneyResult.setId(userMoney.getId());
userMoneyResult.setSad(userMoney.getSad());
//获取当前时间 //获取当前时间
Date CurrentPeriod = new Date(); Date CurrentPeriod = new Date();
//获取当前时间周期的上一个周期 //获取当前时间周期的上一个周期

View File

@ -49,4 +49,7 @@ public class UserMoneyResult implements Serializable {
@TableField("user_id") @TableField("user_id")
private Long userId; private Long userId;
@TableField("user_id")
private BigDecimal sad;
} }

View File

@ -137,9 +137,12 @@ public class AppArtificerController {
@ApiOperation("查询技师列表") @ApiOperation("查询技师列表")
public Result selectArtificerList(Integer page, Integer limit, Long massageTypeId, String artificerName, public Result selectArtificerList(Integer page, Integer limit, Long massageTypeId, String artificerName,
String longitude,String latitude,Integer sort,Integer authentication, String longitude,String latitude,Integer sort,Integer authentication,
Integer by,String city,Long classifyId,String phone, Integer isStart,Integer technicianType,String isBack){ Integer by,String city,Long classifyId,String phone, Integer isStart,Integer technicianType,String isBack,Integer status){
if(status == null){
status = -1;
}
return artificerService.selectArtificerList(page, limit, massageTypeId, artificerName,longitude,latitude, return artificerService.selectArtificerList(page, limit, massageTypeId, artificerName,longitude,latitude,
sort,authentication,by,1,city,classifyId,phone,1,isStart,technicianType,isBack); sort,authentication,by,status,city,classifyId,phone,1,isStart,technicianType,isBack);
} }