zoukankan      html  css  js  c++  java
  • client-autoReport-common

    @Getter
    @Setter
    @AllArgsConstructor
    public class Anchor extends BaseModel {
    /**
    * x轴
    */
    private double x;

    /**
    * y轴
    */
    private double y;

    /**
    * 长度
    */
    private double width;

    /**
    * 高度
    */
    private double height;
    }

    @Getter
    @Setter
    @AllArgsConstructor
    public class Border implements Serializable {
    /**
    * 边线颜色
    */
    private String color;

    /**
    * 边框线设置;可设置虚线
    */
    private Integer lineDash;

    /**
    * 边线大小
    */
    private Double borderWidth;

    public Border() {
    }

    public Border color(String color) {
    this.color = color;
    return this;
    }

    public Border borderWidth(Double borderWidth) {
    this.borderWidth = borderWidth;
    return this;
    }

    }

    @Getter
    @Setter
    public class Style implements Serializable {

    /**
    * 字体 @JSONField能把字段序列化成指定的格式
    */
    @JSONField(name = "font-family")
    private String fontFamily;

    /**
    * 字体大小
    */
    private String fontSize;

    /**
    * 颜色
    */
    private String color;

    /**
    * 加粗
    */
    private String fontWeight;

    /**
    * 倾斜
    */
    private String fontStyle;

    /**
    * 下划线
    */
    private String textDecoration;

    /**
    * 文字对齐方式
    */
    private String textAlign;

    /**
    * 填充颜色
    */
    private String fillColor;

    /**
    * 文本段落行高
    */
    private String lineHeight;

    /**
    * textBoxShape级别设置文字距离左边距离
    */
    private String textIndent;
    }
  • 相关阅读:
    基于 .NET Core 的简单文件服务器
    重启博客园,走出第一步
    layui扩展组件zTreeSelectM,下拉树多选
    skyline加载arcgis发布的wms服务
    HTML&CSS:构建网站不能不说的那些事儿
    VueCLi3 配置less变量
    Bootstrap4 本地编译运行
    冒泡排序和选择排序
    Router
    ToDoList
  • 原文地址:https://www.cnblogs.com/shuaiqing/p/12599015.html
Copyright © 2011-2022 走看看