U8Reference.java 1.14 KB
package com.huaheng.pc.referenceCode.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.util.Date;

@Data
@TableName(value = "reference_code")
public class U8Reference {


    @TableId(value = "id",type = IdType.AUTO)
    private int id;
    /**
     * U8上游单号
     */
    @TableField(value ="referCode")
    private String referCode;
    /**
     * U8上游类型
     */
    @TableField(value ="referType")
    private String referType;
    /**
     * U8上游类型 名称
     */
    @TableField(value ="typeName")
    private String typeName;
    /**
     * WMS仓库
     */
    @TableField(value ="warehouseCode")
    private String warehouseCode;
    /**
     * 货主 code
     */
    @TableField(value ="companyCode")
    private String companyCode;
    /**
     * 上游仓库
     */
    @TableField(value ="stock")
    private String stock;
    /**
     * 上游仓库
     */
    @TableField(value ="created")
    private Date created;


}