WxMaEncryptedInfo.java 462 B

1234567891011121314151617181920212223242526272829303132
  1. package com.dk.oauth.entity;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. /**
  5. * @className: WxMaEncryptedInfo
  6. * @author: jyh
  7. * @create: 2021-04-06 17:42
  8. * @description: 微信加密信息
  9. */
  10. @Data
  11. public class WxMaEncryptedInfo implements Serializable {
  12. /**
  13. * 加密数据
  14. */
  15. private String encryptedData;
  16. /**
  17. * 偏移
  18. */
  19. private String iv;
  20. /**
  21. * session_key
  22. */
  23. private String sessionKey;
  24. }