WarehousePoint.java
830 Bytes
package com.huaheng.api.jindie.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
@TableName(value = "warehouse_point")
public class WarehousePoint {
/**
* 编码
*/
@TableField(value = "fNumber")
@JsonProperty("FNumber")
private String fNumber;
/**
* 名称
*/
@TableField(value = "fName")
@JsonProperty("FName")
private String fName;
/**
* 仓库属性
*/
@TableField(value = "fStockProperty")
@JsonProperty("FStockProperty")
private String fStockProperty;
/**
* 仓位编码
*/
@TableField(value = "fFlexEntryId")
@JsonProperty("FFlexEntryId")
private String fFlexEntryId;
}