package com.ruoyi.system.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.ruoyi.common.annotation.Excel; import com.baomidou.mybatisplus.annotation.TableField; import java.util.Date; import lombok.Data; /** * 序列号基础对象 sys_serial_number * * @author ruoyi * @date 2025-02-27 */ @Data public class SysSerialNumber{ /** id */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** no */ @Excel(name = "no") @TableField("no") private String no; /** key */ @Excel(name = "key") @TableField("key_str") private String keyStr; /** 附属可以 */ @Excel(name = "附属可以") @TableField("key_aux_str") private String keyAuxStr; /** 流水号 */ @Excel(name = "流水号") @TableField("serial_number") private Integer serialNumber; /** 创建者 */ @TableField("create_by") private String createBy; /** 创建时间 */ @TableField("create_time") private Date createTime; /** 更新人;修改后有值 */ @TableField("update_by") private String updateBy; /** 更新时间;修改后有值 */ @TableField("update_time") private Date updateTime; /** 状态(0.启用;1.停用) */ @Excel(name = "状态", readConverterExp = "0=启用,1=停用") @TableField("status") private Integer status; /** 删除(0.正常;1.删除) */ @Excel(name = "删除", readConverterExp = "0=正常,1=删除") @TableField("deleted") private Integer deleted; /** 备注 */ @Excel(name = "备注") @TableField("remark") private String remark; }