提交 e32c8668 authored 作者: zhoushaopan's avatar zhoushaopan

feat(电子签名模块): 新增id字段

新增id字段
上级 757b3b29
...@@ -61,7 +61,7 @@ import org.springframework.web.bind.annotation.RestController; ...@@ -61,7 +61,7 @@ import org.springframework.web.bind.annotation.RestController;
@RestController @RestController
@RequestMapping("/signature") @RequestMapping("/signature")
@AutoDocument @AutoDocument
@Api(tags = "电子签名模块") @Api(tags = "电子签名模块",description = "电子签名模块")
@Slf4j @Slf4j
public class BillSignature { public class BillSignature {
......
...@@ -19,16 +19,29 @@ public class SaveBillSignatureVo { ...@@ -19,16 +19,29 @@ public class SaveBillSignatureVo {
@ApiModelProperty(value = "任务Id") @ApiModelProperty(value = "任务Id")
private Integer taskId; private Integer taskId;
@ApiModelProperty(value = "发件方经办人A id")
private Integer sendUseraId;
@ApiModelProperty(value = "发件方经办人A的电子签名") @ApiModelProperty(value = "发件方经办人A的电子签名")
private String sendUseraIdSignature; private String sendUseraIdSignature;
@ApiModelProperty(value = "发件方经办人B id")
private Integer sendUserbId;
@ApiModelProperty(value = "发件方签发人的电子签名") @ApiModelProperty(value = "发件方签发人的电子签名")
private String sendUserbIdSignature; private String sendUserbIdSignature;
@ApiModelProperty(value = "接收方经办人A id")
private Integer receiveUseraId;
@ApiModelProperty(value = "接收方经办人的电子签名") @ApiModelProperty(value = "接收方经办人的电子签名")
private String receiveUseraIdSignature; private String receiveUseraIdSignature;
@ApiModelProperty(value = "接收方签收人的电子签名") @ApiModelProperty(value = "发件方经办人B id")
private Integer receiveUserbId;
@ApiModelProperty(value = "接收方签收人B的电子签名")
private String receiveUserbIdSignature; private String receiveUserbIdSignature;
@ApiModelProperty(value = "业务类型") @ApiModelProperty(value = "业务类型")
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论