8 changed files with 156 additions and 3 deletions
@ -0,0 +1,25 @@ |
|||||||
|
package com.biutag.supervision.pojo.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class RiskClass { |
||||||
|
|
||||||
|
//
|
||||||
|
@TableId(value = "id", type = IdType.AUTO) |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
//
|
||||||
|
@TableField("name") |
||||||
|
private String name; |
||||||
|
|
||||||
|
//
|
||||||
|
@TableField("sort") |
||||||
|
private Integer sort; |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,24 @@ |
|||||||
|
package com.biutag.supervision.pojo.model; |
||||||
|
|
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author wxc |
||||||
|
* @date 2024/11/13 |
||||||
|
*/ |
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class RiskClassModel { |
||||||
|
|
||||||
|
private Integer id; |
||||||
|
|
||||||
|
private Integer pid; |
||||||
|
|
||||||
|
private String name; |
||||||
|
|
||||||
|
private Integer sort; |
||||||
|
|
||||||
|
private Integer size; |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,36 @@ |
|||||||
|
package com.biutag.supervision.pojo.vo; |
||||||
|
|
||||||
|
import com.biutag.supervision.pojo.entity.Model; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author wxc |
||||||
|
* @date 2024/10/15 |
||||||
|
*/ |
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class RiskTree { |
||||||
|
|
||||||
|
private Integer id; |
||||||
|
|
||||||
|
private String riskName; |
||||||
|
|
||||||
|
private String type; |
||||||
|
|
||||||
|
private Integer size; |
||||||
|
|
||||||
|
private List<RiskTree> children = new ArrayList<>(); |
||||||
|
|
||||||
|
public static RiskTree of(Model model) { |
||||||
|
RiskTree child = new RiskTree(); |
||||||
|
child.setId(model.getId()); |
||||||
|
child.setRiskName(model.getModelName()); |
||||||
|
child.setType("model"); |
||||||
|
return child; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Binary file not shown.
Loading…
Reference in new issue