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.
22 lines
716 B
22 lines
716 B
import 'package:akuCommunity/constants/api.dart';
|
|
import 'package:akuCommunity/utils/network/base_model.dart';
|
|
import 'package:akuCommunity/utils/network/net_util.dart';
|
|
|
|
class ManagerFunc {
|
|
static insertVisitorInfo(int id, int type, String name, int sex, String tel,
|
|
String carNum, DateTime expectedVisitDate) async {
|
|
BaseModel baseModel = await NetUtil().post(API.manager.insertVisitorInfo,
|
|
params: {
|
|
'buildingUnitEstateId': id,
|
|
'type': type,
|
|
'name': name,
|
|
'sex': sex,
|
|
'tel': tel,
|
|
'carNum': carNum,
|
|
'expectedVisitDate': expectedVisitDate.toIso8601String(),
|
|
},
|
|
showMessage: true);
|
|
return baseModel;
|
|
}
|
|
}
|