From 4943051086e517dcf26e1c734bedcdf54a07bb81 Mon Sep 17 00:00:00 2001 From: sikadi <13315935+sikadi_love@user.noreply.gitee.com> Date: Tue, 21 Nov 2023 08:38:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0type=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/fate/firm/domain/FirmType.java | 21 +++++++++++++++++++ fate-firm-server/pom.xml | 1 - .../fate/firm/controller/FirmController.java | 4 ++++ 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 fate-firm-common/src/main/java/com/fate/firm/domain/FirmType.java diff --git a/fate-firm-common/src/main/java/com/fate/firm/domain/FirmType.java b/fate-firm-common/src/main/java/com/fate/firm/domain/FirmType.java new file mode 100644 index 0000000..998f549 --- /dev/null +++ b/fate-firm-common/src/main/java/com/fate/firm/domain/FirmType.java @@ -0,0 +1,21 @@ +package com.fate.firm.domain; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.fate.common.core.web.domain.BaseEntity; +import io.swagger.annotations.Example; +import lombok.*; + +/** + * @description: TODO + * @author: SIKADI + * @date: 2023/11/21 8:22 + **/ +@Data +@NoArgsConstructor +@AllArgsConstructor +@Builder +@TableName("t_firm_type") +@EqualsAndHashCode(callSuper = true) +public class FirmType extends BaseEntity { + +} diff --git a/fate-firm-server/pom.xml b/fate-firm-server/pom.xml index 219effb..6d8b135 100644 --- a/fate-firm-server/pom.xml +++ b/fate-firm-server/pom.xml @@ -10,7 +10,6 @@ fate-modules-firm-server - 3.6.3 17 diff --git a/fate-firm-server/src/main/java/com/fate/firm/controller/FirmController.java b/fate-firm-server/src/main/java/com/fate/firm/controller/FirmController.java index cb60391..75fe782 100644 --- a/fate-firm-server/src/main/java/com/fate/firm/controller/FirmController.java +++ b/fate-firm-server/src/main/java/com/fate/firm/controller/FirmController.java @@ -126,6 +126,10 @@ public class FirmController extends BaseController { + + + + }