邮件API

This commit is contained in:
2025-11-09 20:54:10 +08:00
parent 50efda3957
commit 58e5717d03
203 changed files with 1342 additions and 2749 deletions

View File

@@ -0,0 +1,24 @@
package com.mini.capi.model;
import lombok.Data;
import java.io.Serializable;
@Data
public class DateInfo implements Serializable {
private String yesterday;
// 当月yyyyMM
private String currentMonth;
// 当前季度yyyyQ1-Q4
private String currentQuarter;
// 当前年度yyyy
private String currentYear;
public DateInfo(String yesterday, String currentMonth, String currentQuarter, String currentYear) {
this.yesterday = yesterday;
this.currentMonth = currentMonth;
this.currentQuarter = currentQuarter;
this.currentYear = currentYear;
}
}