feat:信发
This commit is contained in:
@@ -0,0 +1,20 @@
|
|||||||
|
package com.cool.store.dto.huoma;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author suzhuhong
|
||||||
|
* @Date 2025/11/6 11:09
|
||||||
|
* @Version 1.0
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class AccountTagDTO {
|
||||||
|
|
||||||
|
@ApiModelProperty("门店编码")
|
||||||
|
private String storeNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("设备名称")
|
||||||
|
private String deviceName;
|
||||||
|
|
||||||
|
}
|
||||||
@@ -31,10 +31,9 @@ public class MiniXinFaController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("测试标签信息")
|
@ApiOperation("测试标签信息")
|
||||||
@GetMapping("/getAccountAllTags")
|
@PostMapping("/getAccountAllTags")
|
||||||
public ResponseResult<List<TagDetailDTO>> getAccountAllTags(@RequestParam("storeNum")String storeNum,
|
public ResponseResult<List<TagDetailDTO>> getAccountAllTags(@RequestBody AccountTagDTO tagDTO) {
|
||||||
@RequestParam("deviceName")String deviceName) {
|
List<TagDetailDTO> accountAllTags = xinFaBusinessService.getAccountAllTags(tagDTO.getStoreNum(), tagDTO.getDeviceName());
|
||||||
List<TagDetailDTO> accountAllTags = xinFaBusinessService.getAccountAllTags(storeNum,deviceName);
|
|
||||||
return ResponseResult.success(accountAllTags);
|
return ResponseResult.success(accountAllTags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user