派生自 projectDept/qhighschool

Administrator
2022-12-06 92027c9960c8e4e8d84db11c2c422254a5b7d38c
src/main/java/com/qxueyou/scc/base/model/UserCipher.java
@@ -18,20 +18,20 @@
   private static final long serialVersionUID = 898178024362728710L;
   // 用户ID
   // 用户ID
   @Id
   @Column(name = "user_id", unique = true, nullable = false, length = 32)
   private String userId;
   
   // RSA密钥模
   // RSA密钥模
   @Column(name = "MODULUS", length = 255)
   private String modulus;
   
   // RSA公钥指数
   // RSA公钥指数
   @Column(name = "PUBLIC_EXPONENT", length = 255)
   private String publicExponent;
   
   // RSA私钥指数
   // RSA私钥指数
   @Column(name = "PRIVATE_EXPONENT", length = 255)
   private String privateExponent;