48 lines
545 B
Java
48 lines
545 B
Java
package model;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class TextPosition {
|
|
|
|
/**
|
|
* 页码
|
|
*/
|
|
private int pageNum;
|
|
|
|
/**
|
|
* x轴起始位置
|
|
*/
|
|
private float x;
|
|
|
|
/**
|
|
* y轴起始位置
|
|
*/
|
|
private float y;
|
|
|
|
/**
|
|
* 宽度
|
|
*/
|
|
private float width;
|
|
|
|
/**
|
|
* 高度
|
|
*/
|
|
private float height;
|
|
|
|
/**
|
|
* 页宽
|
|
*/
|
|
private float pageWidth;
|
|
|
|
/**
|
|
* 页高
|
|
*/
|
|
private float pageHeight;
|
|
|
|
/**
|
|
* 序号
|
|
*/
|
|
private int sortOrder;
|
|
}
|