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("测试标签信息")
|
||||
@GetMapping("/getAccountAllTags")
|
||||
public ResponseResult<List<TagDetailDTO>> getAccountAllTags(@RequestParam("storeNum")String storeNum,
|
||||
@RequestParam("deviceName")String deviceName) {
|
||||
List<TagDetailDTO> accountAllTags = xinFaBusinessService.getAccountAllTags(storeNum,deviceName);
|
||||
@PostMapping("/getAccountAllTags")
|
||||
public ResponseResult<List<TagDetailDTO>> getAccountAllTags(@RequestBody AccountTagDTO tagDTO) {
|
||||
List<TagDetailDTO> accountAllTags = xinFaBusinessService.getAccountAllTags(tagDTO.getStoreNum(), tagDTO.getDeviceName());
|
||||
return ResponseResult.success(accountAllTags);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user