23 lines
599 B
Java
23 lines
599 B
Java
package com.yj.earth.design;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class IconLibrary {
|
|
@Schema(description = "主键")
|
|
private String id;
|
|
@Schema(description = "图标库路径")
|
|
private String path;
|
|
@Schema(description = "图标库名称")
|
|
private String name;
|
|
@Schema(description = "是否启用")
|
|
private Integer isEnable;
|
|
@Schema(description = "创建时间")
|
|
private LocalDateTime createdAt;
|
|
@Schema(description = "更新时间")
|
|
private LocalDateTime updatedAt;
|
|
}
|