|
|
@@ -0,0 +1,35 @@
|
|
|
+package com.cyksj.model.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.cyksj.model.BaseEntity;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("daily_usage_statistics_record")
|
|
|
+public class DailyUsageStatisticsRecord extends BaseEntity {
|
|
|
+
|
|
|
+ private String type;
|
|
|
+
|
|
|
+ private Date usageDate;
|
|
|
+
|
|
|
+ private Long userCount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 当日可用量
|
|
|
+ */
|
|
|
+ private BigDecimal dailyLimitTotal;
|
|
|
+
|
|
|
+ private Long usageUserCount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 当日用量
|
|
|
+ */
|
|
|
+ private BigDecimal usedUsd;
|
|
|
+
|
|
|
+ private Long requestCount;
|
|
|
+}
|