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

io.github.linmoure.params.billOfLadManage.BillOfLadManageRemove Maven / Gradle / Ivy

There is a newer version: 1.1.11
Show newest version
package io.github.linmoure.params.billOfLadManage;

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

/**
 * @author 李衡林
 */
@EqualsAndHashCode(callSuper = true)
@Data
public class BillOfLadManageRemove extends WSBaseParam {

    @Data
    public static class BillOfLadManageIn implements Cloneable {
        /**
         * 唯一标识
         */
        private String identification;


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy