记得上下班打卡 | git大法好,push需谨慎

Commit 831f4547 authored by Administrator's avatar Administrator 🎨

Merge branch 'pre' into 'master'

pre up

See merge request !248
parents 1bbc2fdf 1709350a
...@@ -60,7 +60,7 @@ public class GoblinNftOrderListExcelDto implements Serializable, Cloneable { ...@@ -60,7 +60,7 @@ public class GoblinNftOrderListExcelDto implements Serializable, Cloneable {
this.setOrderType("演出赠送"); this.setOrderType("演出赠送");
break; break;
case 4: case 4:
this.setOrderType("空赠送"); this.setOrderType("空赠送");
break; break;
default: default:
this.setOrderType("未知"); this.setOrderType("未知");
......
package com.liquidnet.service.goblin.controller;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.time.format.DateTimeFormatter;
import java.util.Calendar;
import java.util.Date;
import java.util.SimpleTimeZone;
@Slf4j
//@Api(tags = "正在下单相关")
@RestController
@RequestMapping("/zhengzai/app")
public class testController {
public static void main(String[] args) {
/*SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
DateFormat dateInstance = SimpleDateFormat.getDateInstance();
String format = dateInstance.format("2022-01-01 22:22:22");
Date parse = simpleDateFormat.parse("2022-01-01 22:22:22");
DateTimeFormatter.ofLocalizedTime();
Calendar.getInstance()*/
}
}
class person implements Comparable {
@Override
public int compareTo(Object o) {
return 0;
}
}
class eumue {
private final String name;
private final int num;
private eumue(String name, int num) {
this.name = name;
this.num = num;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment