SignerAccount.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.dgtly.system.domain;
  2. /**
  3. * @description: 签署方账号信息
  4. * @author: qxm
  5. * @date: 2020/10/12 20:30
  6. */
  7. public class SignerAccount {
  8. //签署操作人个人账号标识,即操作本次签署的个人
  9. private String signerAccountId;
  10. //签约主体账号标识,即本次签署对应任务的归属方
  11. private String authorizedAccountId;
  12. public String getSignerAccountId() {
  13. return signerAccountId;
  14. }
  15. public void setSignerAccountId(String signerAccountId) {
  16. this.signerAccountId = signerAccountId;
  17. }
  18. public String getAuthorizedAccountId() {
  19. return authorizedAccountId;
  20. }
  21. public void setAuthorizedAccountId(String authorizedAccountId) {
  22. this.authorizedAccountId = authorizedAccountId;
  23. }
  24. public SignerAccount(String signerAccountId, String authorizedAccountId) {
  25. this.signerAccountId = signerAccountId;
  26. this.authorizedAccountId = authorizedAccountId;
  27. }
  28. public SignerAccount(String signerAccountId) {
  29. this.signerAccountId = signerAccountId;
  30. }
  31. public SignerAccount() {
  32. }
  33. }