getTaskMonthHistory static method

Future<DataResult> getTaskMonthHistory()

月历史记录

Implementation

static Future<DataResult> getTaskMonthHistory() async {
  var res = await BaseDao.fromBaseEncryptV3({}, Address.getTaskMonthHistory(),
      queryParameters: {}, post: false);
  if (res.result) {
    return DataResult(res.data, true);
  }
  return res;
}