Vehicle.java 875 Bytes
package com.huaheng.pc.system.model.domain;

import com.baomidou.mybatisplus.annotation.TableField;
import com.huaheng.framework.aspectj.lang.annotation.Excel;
import lombok.Data;

@Data
public class Vehicle {

    /** 车型 */
    @TableField(value = "name")
    @Excel(name = "型号")
    private String name;

    /** 名称 */
    @TableField(value = "userDef1")
    @Excel(name = "名称")
    private String userDef1;

    /** 数量 */
    @TableField(value = "qty")
    @Excel(name = "数量")
    private Long qty;

    /** 物料编码 */
    @TableField(value = "code")
    @Excel(name = "物料编码")
    private String code;

    /** 出库口 */
    @TableField(value = "port")
    @Excel(name = "出库站台")
    private String port;


    /** 物料类型 */
    @TableField(value = "type")
    @Excel(name = "物料类型")
    private String type;

}