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;
|
}
|
}
|