洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
674 B

7 months ago
  1. //
  2. // ZolozSimpleValueContent.h
  3. // DTFUtility
  4. //
  5. // Created by 053508 on 2021/6/9.
  6. // Copyright © 2021 com. .iphoneclient.DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ZolozSimpleValueContent : NSObject
  11. @property(nonatomic,strong,nullable)NSString * simpleValue;//用于存放Md5值。
  12. @property(nonatomic,assign)NSUInteger length;//用于存放Md5值。
  13. @property(nonatomic,strong,nullable)NSString * simpleOutValue;//用于存放Md5值。
  14. @property(nonatomic,strong,nullable)NSString * simpleEnValue;//用于存放加密后的Md5值。
  15. + (ZolozSimpleValueContent *)sharedInstance;
  16. @end
  17. NS_ASSUME_NONNULL_END