io.github.linmoure.params.container.InformationRemove Maven / Gradle / Ivy
package io.github.linmoure.params.container;
import io.github.linmoure.params.WSBaseParam;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* @author 李衡林
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class InformationRemove extends WSBaseParam {
@Data
public static class Information implements Cloneable {
/**
* 批次号
*/
private String batchNumber;
@Override
public Information clone() {
try {
return (Information) super.clone();
} catch (CloneNotSupportedException e) {
throw new AssertionError();
}
}
}
}