zbj//1.资源管理 上传资源

This commit is contained in:
zhangbaojian
2023-04-17 18:51:44 +08:00
parent 0b944efaf4
commit 79ed7ae44f
8 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
package com.njcn.system.pojo.po;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.time.LocalDateTime;
/**
* <p>
*
* </p>
*
* @author zbj
* @since 2023-04-17
*/
@Data
@TableName("pqs_resinformation")
public class Resinformation {
/**
* 资源序号
*/
@TableField(value = "id")
private String id;
/**
* 资源名称
*/
@TableField(value = "name")
private String name;
/**
* 资源描述
*/
@TableField(value = "description")
private String description;
/**
* 资源路径
*/
@TableField(value = "res_url")
private String url;
/**
* 数据更新人ID(外键user表)
*/
@TableField(value = "updateuser")
private String updateUser;
/**
* 数据更新时间
*/
@TableField(value = "updatetime")
private LocalDateTime updateTime;
/**
* 数据状态(0: 删除; 1: 正常)
*/
@TableField(value = "state")
private Integer state;
/**
* 系统类型Guid
*/
@TableField(value = "systype")
private String systemType;
/**
* 资源类型
*/
@TableField(value = "type")
private String type;
}