This commit is contained in:
2022-09-21 18:31:07 +08:00
parent bdaa51dbb6
commit e29ecd2845
202 changed files with 11730 additions and 619 deletions

View File

@@ -0,0 +1,43 @@
package com.yunbao.faceunity.entity;
import androidx.annotation.NonNull;
import com.yunbao.faceunity.data.FaceParam;
public class MakeupCustomClassBean extends BaseBean{
private int nameRes;
private String key;
private int beanType;
public MakeupCustomClassBean(int nameRes, String key, int beanType) {
this.nameRes = nameRes;
this.key = key;
this.beanType = beanType;
}
@Override
public String getKey() {
return key;
}
@Override
public int getDesRes() {
return nameRes;
}
@Override
public int getImageRes() {
return 0;
}
@Override
public int getBeanType() {
return beanType;
}
@NonNull
@Override
public ModelAttributeData getModelAttributeData() {
return null;
}
}