revert: 回滚打印机模块(云服务器无法访问局域网打印机)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Agent
2026-03-29 06:45:45 +00:00
parent 4dddae325c
commit ae47dde897
6 changed files with 0 additions and 335 deletions

View File

@@ -1,48 +0,0 @@
package com.example.building.entity;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 打印机实体
*/
@Data
@TableName("printers")
public class Printer {
@TableId(type = IdType.ASSIGN_UUID)
private String printerId;
/**
* 打印机名称
*/
private String name;
/**
* IP地址
*/
private String ip;
/**
* 端口
*/
private Integer port;
/**
* 是否默认 0-否 1-是
*/
private Integer isDefault;
/**
* 状态 0-禁用 1-启用
*/
private Integer status;
@TableField(fill = FieldFill.INSERT)
private LocalDateTime createdAt;
@TableField(fill = FieldFill.INSERT_UPDATE)
private LocalDateTime updatedAt;
}