fhx
2024-06-14 a8251744709de9e3ca4063985a67e52b02078343
phis-feign/src/main/java/com/hz/his/dto/fdd/FddActorDto.java
@@ -3,6 +3,8 @@
import com.hz.his.dto.PageDto;
import lombok.Data;
import java.util.List;
/**
 * 法大大签署人测参与人
 * @USER: fhx
@@ -11,8 +13,12 @@
@Data
public class FddActorDto {
    /** 参与人类型 */
    private String actorType;
    /** 参与人标识 */
    private String actorId;
//    /** 参与人类型(FddActorConstants) */
//    private String actorType;
    /** 参与人证件类型 */
    private String certType;
    /** 定位X轴位置 */
    private String positionX;
@@ -20,6 +26,20 @@
    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;
}