----添加,jar管理功能
This commit is contained in:
@ -0,0 +1,38 @@
|
||||
package com.xjrsoft.module.dev.entity;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @title: 测试3
|
||||
* @Author 管理员
|
||||
* @Date: 2025-09-25
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
@TableName("sys_jar_info")
|
||||
@ApiModel(value = "jar包明细对象", description = "jar包明细")
|
||||
public class SysJarInfo {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@ApiModelProperty("")
|
||||
@TableId
|
||||
private String id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String custom;
|
||||
|
||||
private String url;
|
||||
|
||||
private String fid;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user