54 lines
1.3 KiB
Java
54 lines
1.3 KiB
Java
package com.yj.earth.business.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import lombok.experimental.Accessors;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author 周志雄
|
|
* @since 2025-09-24
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@Accessors(chain = true)
|
|
@TableName("icon_library")
|
|
@Schema(name = "IconLibrary", description = "")
|
|
public class IconLibrary implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Schema(description = "主键")
|
|
@TableId(value = "id", type = IdType.ASSIGN_UUID)
|
|
private String id;
|
|
|
|
@Schema(description = "生成文件夹路径")
|
|
private String path;
|
|
|
|
@Schema(description = "图标库文件名称")
|
|
private String name;
|
|
|
|
@Schema(description = "是否启用")
|
|
private Integer isEnable;
|
|
|
|
@Schema(description = "创建时间")
|
|
@TableField(fill = FieldFill.INSERT)
|
|
private LocalDateTime createdAt;
|
|
|
|
@Schema(description = "更新时间")
|
|
@TableField(fill = FieldFill.UPDATE)
|
|
private LocalDateTime updatedAt;
|
|
}
|