lxw
2022-10-11 c8fe7628d2d6a3a40d8e168c67b10b6e65415517
1
2
3
4
5
6
7
8
9
10
11
12
package com.whyc.dto.Station;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
@Data
public class StationName1 implements Serializable {
    private String station1;
    private List<StationName2> sName2s;
}