/*
 * @author lsy
 * @date   2019-09-02
 **/
class RouterBuildItem<S, T, Z> {
  S first;
  T second;
  Z third;
  RouterBuildItem(this.first, this.second,this.third);
}