package com.product.face.entity;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* @Author cheng
|
* @Date 2023/5/24 10:31
|
* @Desc
|
*/
|
public class FaceEntity implements Serializable {
|
|
private static final long serialVersionUID = 2740417254150550879L;
|
|
private JSONObject data;
|
|
private List<JSONObject> drawingList;
|
|
public JSONObject getData() {
|
return data;
|
}
|
|
public void setData(JSONObject data) {
|
this.data = data;
|
}
|
|
public List<JSONObject> getDrawingList() {
|
return drawingList;
|
}
|
|
public void setDrawingList(List<JSONObject> drawingList) {
|
this.drawingList = drawingList;
|
}
|
}
|