18 lines
311 B
Objective-C
18 lines
311 B
Objective-C
//
|
|
// DateSignModel.h
|
|
// CustomPicker
|
|
//
|
|
// Created by ko1o on 2018/7/25.
|
|
// Copyright © 2018年 ko1o. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface FSDateSignModel : NSObject
|
|
|
|
+ (FSDateSignModel *)sharedInstance;
|
|
|
|
- (NSString *)getDateSignWithMonth:(int)month day:(int)day;
|
|
|
|
@end
|