fhx
2024-06-14 a8251744709de9e3ca4063985a67e52b02078343
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
@@ -17,11 +19,20 @@
    /** 门店标识 */
    private String shopId;
    /** 角色类型 */
    private String roleType;
    /** 签署模板ID */
    private String signTemplateId;
    /** 签署任务模板名称 */
    private String signTemplateName;
    /** 模板类型(电子病历和处方时选择的模板) */
    private String templateType;
    /** 签署任务编号 */
    private String signTaskId;
    /** 操作人类型(OperatorConstants) */
    private Integer opType;
    /** 登录操作人角色id */
    private String loginRoleId;
@@ -43,10 +54,22 @@
    /** 签章id */
    private String sealId;
    /** 定位X轴位置 */
    private String positionX;
    /** 定位Y轴位置 */
    private String positionY;
    /** 定位页码.首页从1开始 */
    private int positionPageNo = 1;
//    //作废签署用到
//    /** 定位X轴位置 */
//    private String positionX;
//    /** 定位Y轴位置 */
//    private String positionY;
//    /** 定位页码.首页从1开始 */
//    private int positionPageNo = 1;
//    /** 签名宽度 */
//    private Integer width;
//    /** 签名高度 */
//    private Integer height;
    //发起创建签署任务用到
    /** 签署参与人(因为非json接参,所以要用个字符对象接收) */
    private String actorListStr;
    /** 签署参与人 */
    private List<FddActorDto> actorList;
}