2026-07-01 6b5f7c66fc40d7f6099d561e31a34fbd50dd20d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package cn.iocoder.yudao.module.mdm.controller.admin.warehouse.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MDM 仓库 Response VO")
@Data
public class MdmWarehouseRespVO {
 
    @Schema(description = "仓库编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long id;
 
    @Schema(description = "仓库编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "WH001")
    private String code;
 
    @Schema(description = "仓库名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "成品仓库")
    private String name;
 
    @Schema(description = "仓库地址", example = "上海市浦东新区")
    private String address;
 
    @Schema(description = "面积(平方米)", example = "1000.00")
    private BigDecimal area;
 
    @Schema(description = "仓库类型", example = "1")
    private Integer type;
 
    @Schema(description = "负责人用户ID", example = "1")
    private Long chargeUserId;
 
    @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "0")
    private Integer status;
 
    @Schema(description = "是否冻结", example = "false")
    private Boolean frozen;
 
    @Schema(description = "备注", example = "备注信息")
    private String remark;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
}