新RabbitMQ精讲 提升工程实践能力 培养架构思维

167 阅读1分钟

新RabbitMQ精讲 提升工程实践能力 培养架构思维

v: ititit111222333

    /**
     * 货位名称
     */
    @ExcelProperty(value = "货位名称", index = 1)
    @ApiModelProperty(value = "货位名称", name = "locationName")
    private String locationName;

    /**
     * 区域名称路径(省市区)
     */
    @ExcelProperty(value = "省市区街道", index = 2)
    @ApiModelProperty(value = "区域名称路径", name = "regionNamePath")
    private String regionNamePath;

    /**
     * 详情地址
     */
    @ExcelProperty(value = "详细地址", index = 3)
    @ApiModelProperty(value = "详情地址", name = "address")
    private String address;

    /**
     * 说明
     */
    @ExcelProperty(value = "说明", index = 4)
    @ApiModelProperty(value = "说明", name = "remark")
    private String remark;

    /**
     * 状态 1:有效 0:无效
     */
    @ExcelProperty(value = "状态", index = 5, converter = CustomStateConverter.class)
    @ApiModelProperty(value = "状态 1:有效 0:无效", name = "state")
    private Integer state;