Zone.java 498 Bytes
package com.huaheng.control.management.dto;

import java.io.Serializable;

import lombok.Data;

/**
 * @Description: 库区管理
 * @Author:      jeecg-boot
 * @Date:        2022-10-13
 * @Version:     V1.0
 */
@Data
public class Zone implements Serializable {
    
    private static final long serialVersionUID = 1L;

    /** 主键 */
    private Integer id;

    /** 编码 */
    private String code;

    /** 名称 */
    private String name;

    /** 类型 */
    private String type;

}