This commit is contained in:
雷欧(林平凡)
2025-03-17 15:07:10 +08:00
parent a3388168cf
commit 335c940353

View File

@@ -127,24 +127,20 @@ public class OrderUtil {
} }
public String getEmjoy(Integer status){ public String getEmjoy(Integer status){
switch (status) { return switch (status) {
//[爱心]已付款 //[爱心]已付款
case 16: case 16 -> "[爱心]";
return "[爱心]";
//[Wow] 待付款 //[Wow] 待付款
case 15: case 15 -> "[Wow]";
return "[Wow]";
//[心碎]已取消 //[心碎]已取消
case 2, 3: case 2, 3 -> "[心碎]";
return "[心碎]";
//[亲亲] 已完成 //[亲亲] 已完成
case 17: case 17 ->
//[Broken] 违规 //[Broken] 违规
return "[亲亲]"; "[亲亲]";
case 27,28: case 27, 28 -> "[Broken]";
return "[Broken]"; default -> "";
};
}
} }