You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.xydl.cac.model.spectrogram;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class YspModel extends SpectrogramModel {
|
|
Long createTime;
|
|
Integer flag;
|
|
Float xInterval;
|
|
Float yMax;
|
|
String xUnit;
|
|
String yUnit;
|
|
Integer k;
|
|
Integer num;
|
|
List<YspWay> wayList;
|
|
}
|