com.aiwiown.face.domain.FaceSetListModel Maven / Gradle / Ivy
package com.aiwiown.face.domain;
import com.aiwiown.face.ApiObject;
import com.aiwiown.face.internal.mapping.ApiField;
/**
* @ClassName : FaceSetListModel
* @Description :
* @Author : dbin0123
* @Date: 2020-03-13 17:23
*/
public class FaceSetListModel extends ApiObject {
private static final long serialVersionUID = 5267057819930432606L;
@ApiField("tags")
private String tags;
@ApiField("start")
private Integer start;
public String getTags() {
return tags;
}
public void setTags(String tags) {
this.tags = tags;
}
public Integer getStart() {
return start;
}
public void setStart(Integer start) {
this.start = start;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy