package com.hz.his.dto.fdd;
|
|
import com.hz.his.dto.PageDto;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* 法大大签署人测参与人
|
* @USER: fhx
|
* @DATE: 2024/3/6
|
**/
|
@Data
|
public class FddActorDto {
|
|
/** 参与人标识 */
|
private String actorId;
|
// /** 参与人类型(FddActorConstants) */
|
// private String actorType;
|
/** 参与人证件类型 */
|
private String certType;
|
|
/** 定位X轴位置 */
|
private String positionX;
|
/** 定位Y轴位置 */
|
private String positionY;
|
/** 定位页码.首页从1开始 */
|
private int positionPageNo = 1;
|
/** 签名宽度 */
|
private Integer width;
|
/** 签名高度 */
|
private Integer height;
|
|
|
/** 参与人用户类型(FddConstants) */
|
private Integer userType;
|
/** 参与人用户(员工)标识 */
|
private String userId;
|
|
/** 签章控件列表 */
|
private List<FddSignFieldDto> signFields;
|
/** 填写控件列表 */
|
private List<FddSignFieldDto> fillFields;
|
|
}
|