添加盛安豆字段
This commit is contained in:
parent
00ff45b49d
commit
4bb5dbfa67
|
@ -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();
|
||||||
//获取当前时间周期的上一个周期
|
//获取当前时间周期的上一个周期
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue