Address.java 1.97 KB
package com.huaheng.pc.config.address.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.io.Serializable;

/**
 * 接口地址 WMS存放上下游交互系统对应的url
 */
@ApiModel(value="com.huaheng.pc.config.address.domain.Address")
@Data
@TableName(value = "address")
public class Address implements Serializable {
    /**
     * 内部号
     */
     @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty(value="内部号")
    private Integer id;


    /**
     * 仓库代码
     */
    @TableField(value = "warehouseCode")
    @ApiModelProperty(value="仓库代码")
    private String warehouseCode;

    /**
     * 编号
     */
    @TableField(value = "number")
    @ApiModelProperty(value="编号")
    private Integer number;

    /**
     * 参数
     */
    @TableField(value = "param")
    @ApiModelProperty(value="参数")
    private String param;

    /**
     * 接口地址
     */
    @TableField(value = "url")
    @ApiModelProperty(value="接口地址")
    private String url;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getWarehouseCode() {
        return warehouseCode;
    }

    public void setWarehouseCode(String warehouseCode) {
        this.warehouseCode = warehouseCode;
    }

    public Integer getNumber() {
        return number;
    }

    public void setNumber(Integer number) {
        this.number = number;
    }

    public String getParam() {
        return param;
    }

    public void setParam(String param) {
        this.param = param;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }
}