123456789101112131415161718192021 |
- //
- // ComplaintDataModel.m
- // jiaPei
- //
- // Created by Ning.ge on 2023/7/3.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import "ComplaintDataModel.h"
- @implementation ComplaintInfoModel
- @end
- @implementation ComplaintDataModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{@"list": [ComplaintInfoModel class]};
- }
- @end
|