whyclxw
2025-03-25 a7fef2846505b08e0711345b17902e7381612d23
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
package com.whyc.pojo.db_user;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.ToString;
/**
 * 人脸识别
 */
@Data
@ToString
@TableName(schema = "db_user",value = "tb_user_face")
@ApiModel(value="UserFace对象", description="")
public class UserFace {
    @TableId
    private Integer id;
    /**人脸图片路径,http*/
    private String url;
 
    public UserFace() {
    }
 
    public UserFace(String url) {
        this.url = url;
    }
 
    public UserFace(Integer id, String url) {
        this.id = id;
        this.url = url;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
}