This commit is contained in:
2025-01-11 02:00:41 +08:00
parent f693f036df
commit ad9e91cd7a
11 changed files with 36 additions and 20 deletions

View File

@ -32,4 +32,5 @@ public class ContentPageVO {
private String templateCoverUrl;
@ApiModelProperty("是否购买:0未购买,1已购买")
private Integer isBuy;
private BigDecimal duration;
}

View File

@ -27,7 +27,7 @@ public class FaceSampleEntity {
* 样本ID
*/
private Long sourceId;
private float score;
private Float score;
/**
* 人脸照片
*/

View File

@ -4,5 +4,5 @@ import lombok.Data;
@Data
public class AddFaceSampleRespVo {
private float score;
private Float score;
}