package com.example.erp.entity.pp; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; import java.time.LocalDateTime; @Data public class TagStyle { @TableId(type = IdType.AUTO) private Integer id; private Integer type; private String name; private Double tagWidth; private Double tagHeight; private String value; private String size; private LocalDateTime createTime; }