chengf
2025-10-28 2807cca4b6f2e8af204d798679dcee78e695ee28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.ruoyi.business.aidetection.domain;
 
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.experimental.Accessors;
 
/**
 * @Author:yuankun
 * @Package:com.ruoyi.business.aidetection.domain
 * @Project:ruoyi-vue-service
 * @name:Algorithm
 * @Date:2024/11/16 14:43
 * @Filename:Algorithm
 */
@Data
@Accessors(chain = true)
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class AvAlgorithm extends BaseEntity {
 
    /**
     * id
     */
    private Long id;
 
    /**
     * 排序
     */
    @Excel(name = "排序")
    private Integer sort;
 
    /**
     * 名字
     */
    @Excel(name = "名字")
    private String name;
 
    /**
     * 算法编码
     */
    @Excel(name = "算法编码")
    private String algorithmCode;
 
    /**
     * 识别物体
     */
    @Excel(name = "识别物体")
    private String objects;
 
    /**
     * 描述
     */
    @Excel(name = "描述")
    private String description;
 
    /**
     * 模型编码
     */
    @Excel(name = "模型编码")
    private String modelCode;
 
    /**
     * 模型名字
     */
    @Excel(name = "模型名字")
    private String modelName;
 
    /**
     * 模型地址
     */
    @Excel(name = "模型地址")
    private String modelPath;
 
    /**
     * 运行设备
     */
    @Excel(name = "运行设备")
    private String device;
 
}