7 changed files with 90 additions and 0 deletions
@ -0,0 +1,12 @@
|
||||
package com.biutag.supervision.controller.sensitivePerception; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* 单位/个人画像 |
||||
* @author wxc |
||||
* @date 2024/10/31 |
||||
*/ |
||||
@RestController("profile/depart") |
||||
public class ProfileDepartController { |
||||
} |
||||
@ -0,0 +1,33 @@
|
||||
package com.biutag.supervision.pojo.model; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
import java.time.LocalDateTime; |
||||
|
||||
/** |
||||
* @author wxc |
||||
* @date 2024/10/17 |
||||
*/ |
||||
@Setter |
||||
@Getter |
||||
public class ModelClueTaskDepartModel { |
||||
|
||||
private String departId; |
||||
|
||||
// 模型名称
|
||||
private String departName; |
||||
|
||||
// 条数
|
||||
private Integer size; |
||||
|
||||
private Integer completedSize; |
||||
|
||||
private Double completedRate; |
||||
|
||||
private Integer verifySize; |
||||
|
||||
private Integer personalSize; |
||||
|
||||
} |
||||
Loading…
Reference in new issue