LocationHigh.java 1.21 KB
package com.huaheng.pc.config.locationHigh.domain;

import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;

import java.io.Serializable;
import java.util.Date;

@Data
@TableName(value = "location_high")
public class LocationHigh implements Serializable {
    /**
     * 内部号
     */
     @TableId(value = "id", type = IdType.AUTO)
    private Integer id;

    /**
     * 编码
     */
    @TableField(value = "code")
    private String code;


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

    /**
     * 库位类型编码
     */
    @TableField(value = "locationTypeCode")
    private String locationTypeCode;

    /**
     * 高低位
     */
    @TableField(value = "high")
    private Integer high;


    /**
     * 高度值
     */
    @TableField(value = "highLevel")
    private Integer highLevel;

    /**
     * 顺序
     */
    @TableField(value = "sequence")
    private Integer sequence;

    /**
     * 创建时间
     */
    @TableField(value = "created", fill = FieldFill.INSERT)
    private Date created;

    /**
     * 创建用户
     */
    @TableField(value = "createdBy", fill = FieldFill.INSERT)
    private String createdBy;

}