All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.linmoure.params.remove.ChineseRemove Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.github.linmoure.params.remove;

import io.github.linmoure.params.WSBaseParam;
import lombok.Data;
import lombok.EqualsAndHashCode;

@EqualsAndHashCode(callSuper = true)
@Data
public class ChineseRemove extends WSBaseParam {

    @Data
    public static class Declare implements Cloneable {

        /**
         * 唯一标识
         */
        private String identification;

        @Override
        public Declare clone() {
            try {
                return (Declare) super.clone();
            } catch (CloneNotSupportedException e) {
                throw new AssertionError();
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy