添加type实体类
parent
9fed499284
commit
4943051086
|
@ -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 {
|
||||||
|
|
||||||
|
}
|
|
@ -10,7 +10,6 @@
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>fate-modules-firm-server</artifactId>
|
<artifactId>fate-modules-firm-server</artifactId>
|
||||||
<version>3.6.3</version>
|
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
|
|
|
@ -126,6 +126,10 @@ public class FirmController extends BaseController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue