ComplaintDataModel.m 354 B

123456789101112131415161718192021
  1. //
  2. // ComplaintDataModel.m
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/7/3.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import "ComplaintDataModel.h"
  9. @implementation ComplaintInfoModel
  10. @end
  11. @implementation ComplaintDataModel
  12. + (NSDictionary *)modelContainerPropertyGenericClass {
  13. return @{@"list": [ComplaintInfoModel class]};
  14. }
  15. @end