资源标签

master
yqy 3 years ago
parent a54e94437c
commit 0b2f840263

@ -1,8 +1,10 @@
package com.baiye.model.vo;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class ResSourceLabel {
private String sourceLabel;

@ -124,4 +124,5 @@ public class ClueController {
public ResponseEntity<List<ResSourceLabel>> findSourceLabel(@RequestBody List<Long> clueIds) {
return new ResponseEntity<>(clueService.findSourceLabel(clueIds), HttpStatus.OK);
}
}

@ -130,4 +130,5 @@ public interface ClueService {
* @return
*/
List<ResSourceLabel> findSourceLabel(List<Long> clueIds);
}

@ -275,4 +275,5 @@ public class ClueServiceImpl implements ClueService {
public List<ResSourceLabel> findSourceLabel(List<Long> clueIds) {
return clueJpa.findSourceLabel(clueIds);
}
}

Loading…
Cancel
Save