chenjiahe
2024-05-22 0e50884553dd11fa72101f23ac51143c9f98a871
phis-feign/src/main/java/com/hz/his/dto/fdd/FddDto.java
@@ -3,6 +3,8 @@
import com.hz.his.dto.PageDto;
import lombok.Data;
import java.util.List;
/**
 * @USER: fhx
 * @DATE: 2024/3/6
@@ -21,6 +23,8 @@
    private String signTemplateId;
    /** 签署任务模板名称 */
    private String signTemplateName;
    /** 模板类型(电子病历和处方时选择的模板) */
    private String templateType;
    /** 操作人类型(OperatorConstants) */
    private Integer opType;
@@ -45,10 +49,26 @@
    /** 签章id */
    private String sealId;
    //作废签署用到
    /** 定位X轴位置 */
    private String positionX;
    /** 定位Y轴位置 */
    private String positionY;
    /** 定位页码.首页从1开始 */
    private int positionPageNo = 1;
    /** 签名宽度 */
    private Integer width;
    /** 签名高度 */
    private Integer height;
    //发起创建签署任务用到
    /** 参与人类型(FddActorConstants) */
    private String actorType;
    /** 参与人证件类型 */
    private String certType;
//    /** 签署参与人(因为非json接参,所以要用个字符对象接收) */
//    private String actorListStr;
//    /** 签署参与人 */
//    private List<FddActorDto> actorList;
}