Просмотр исходного кода

Merge branch 'quota' of wangfan/adweb3-server into master

wangfan 2 месяцев назад
Родитель
Сommit
399fd955de

+ 76 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/quota/entity/ResourceQuota.java

@@ -0,0 +1,76 @@
+package org.jeecg.modules.adweb.quota.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.fasterxml.jackson.annotation.JsonFormat;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+
+/**
+ * @Description: adweb_resource_quote
+ * @Author: jeecg-boot
+ * @Date: 2025-01-07
+ * @Version: V1.0
+ */
+@Data
+@TableName("adweb_resource_quote")
+@Accessors(chain = true)
+@EqualsAndHashCode(callSuper = false)
+@Schema(description = "adweb_resource_quote")
+public class ResourceQuota implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+    /** id */
+    @TableId(type = IdType.AUTO)
+    @Schema(description = "id")
+    private Integer id;
+
+    /** 用户ID,与用户表关联 */
+    @Excel(name = "用户ID,与用户表关联", width = 15)
+    @Schema(description = "用户ID,与用户表关联")
+    private String uid;
+
+    /** 临时站点额度 */
+    @Excel(name = "临时站点额度", width = 15)
+    @Schema(description = "临时站点额度")
+    private Integer websitesQuota;
+
+    /** AI算力额度 */
+    @Excel(name = "AI算力额度", width = 15)
+    @Schema(description = "AI算力额度")
+    private Integer aiPowerQuota;
+
+    /** 外贸大数据额度 */
+    @Excel(name = "外贸大数据额度", width = 15)
+    @Schema(description = "外贸大数据额度")
+    private Integer customsDataQuota;
+
+    /** 外贸大数据用量 */
+    @Excel(name = "外贸大数据用量", width = 15)
+    @Schema(description = "外贸大数据用量")
+    private Integer customsDataUsed;
+
+    /** 创建时间 */
+    @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @Schema(description = "创建时间")
+    private java.util.Date ctime;
+
+    /** 修改时间 */
+    @Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @Schema(description = "修改时间")
+    private java.util.Date utime;
+}

+ 13 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/quota/mapper/ResourceQuotaMapper.java

@@ -0,0 +1,13 @@
+package org.jeecg.modules.adweb.quota.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+import org.jeecg.modules.adweb.quota.entity.ResourceQuota;
+
+/**
+ * @Description: adweb_resource_quota
+ * @Author: jeecg-boot
+ * @Date: 2025-12-07
+ * @Version: V1.0
+ */
+public interface ResourceQuotaMapper extends BaseMapper<ResourceQuota> {}

+ 5 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/quota/mapper/xml/ResourceQuotaMapper.xml

@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.jeecg.modules.adweb.quota.mapper.ResourceQuotaMapper">
+
+</mapper>

+ 15 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/quota/service/IResourceQuotaService.java

@@ -0,0 +1,15 @@
+package org.jeecg.modules.adweb.quota.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+
+import org.jeecg.modules.adweb.quota.entity.ResourceQuota;
+
+/**
+ * @Description: adweb_resource_quota
+ * @Author: jeecg-boot
+ * @Date: 2025-12-07
+ * @Version: V1.0
+ */
+public interface IResourceQuotaService extends IService<ResourceQuota> {
+
+}

+ 20 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/quota/service/impl/ResourceQuotaServiceImpl.java

@@ -0,0 +1,20 @@
+package org.jeecg.modules.adweb.quota.service.impl;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+
+import org.jeecg.modules.adweb.quota.entity.ResourceQuota;
+import org.jeecg.modules.adweb.quota.mapper.ResourceQuotaMapper;
+import org.jeecg.modules.adweb.quota.service.IResourceQuotaService;
+import org.springframework.stereotype.Service;
+
+/**
+ * @Description: adweb_resource_quota
+ * @Author: jeecg-boot
+ * @Date: 2025-12-07
+ * @Version: V1.0
+ */
+@Service
+public class ResourceQuotaServiceImpl extends ServiceImpl<ResourceQuotaMapper, ResourceQuota>
+        implements IResourceQuotaService {
+
+}