18142669586 a02f7b2e22 1
2024-02-23 16:07:50 +08:00

68 lines
1.4 KiB
Java

package com.yunbao.faceunity.entity;
public class LightMakeupBean {
int nameRes;
int iconRes;
String key;
double intensity;
String filterName;
double filterIntensity;
public LightMakeupBean(int nameRes, int iconRes, String key, double intensity, String filterName, double filterIntensity) {
this.nameRes = nameRes;
this.iconRes = iconRes;
this.key = key;
this.intensity = intensity;
this.filterName = filterName;
this.filterIntensity = filterIntensity;
}
public int getNameRes() {
return nameRes;
}
public void setNameRes(int nameRes) {
this.nameRes = nameRes;
}
public int getIconRes() {
return iconRes;
}
public void setIconRes(int iconRes) {
this.iconRes = iconRes;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public double getIntensity() {
return intensity;
}
public void setIntensity(double intensity) {
this.intensity = intensity;
}
public String getFilterName() {
return filterName;
}
public void setFilterName(String filterName) {
this.filterName = filterName;
}
public double getFilterIntensity() {
return filterIntensity;
}
public void setFilterIntensity(double filterIntensity) {
this.filterIntensity = filterIntensity;
}
}