TASK:workspace、design模块代码;
This commit is contained in:
@@ -7,16 +7,15 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
* @Date: 2023/08/01 17:21
|
||||
* @Description: 服装性别分类
|
||||
*/
|
||||
public enum Mannequin implements IEnumDisplay {
|
||||
public enum MannequinType implements IEnumDisplay {
|
||||
|
||||
A("A"),
|
||||
B("B"),
|
||||
C("C")
|
||||
SYSTEM("System"),
|
||||
LIBRARY("Library")
|
||||
;
|
||||
|
||||
private String value;
|
||||
|
||||
Mannequin(String value) {
|
||||
MannequinType(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@@ -9,8 +9,8 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
*/
|
||||
public enum Position implements IEnumDisplay {
|
||||
|
||||
OVERALL("overall"),
|
||||
SINGLE("single")
|
||||
OVERALL("Overall"),
|
||||
SINGLE("Single")
|
||||
;
|
||||
|
||||
private String value;
|
||||
|
||||
@@ -9,9 +9,9 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
*/
|
||||
public enum Sex implements IEnumDisplay {
|
||||
|
||||
MALE("male"),
|
||||
FEMALE("female"),
|
||||
CHILD("child")
|
||||
MALE("Male"),
|
||||
FEMALE("Female"),
|
||||
CHILD("Child")
|
||||
;
|
||||
|
||||
private String value;
|
||||
|
||||
Reference in New Issue
Block a user