You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
722 B
32 lines
722 B
package com.gaotao.modules.pda.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
import org.springframework.data.annotation.Id;
|
|
|
|
/**
|
|
* @author lirui
|
|
* @ClassName: WareHouse
|
|
* @Description: 仓库实体类
|
|
* @date 2018年3月30日
|
|
*/
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
@Data
|
|
public class WareHouse {
|
|
private String Site;
|
|
private String WareHouseID;
|
|
private String WareHouseName;
|
|
private String Active;
|
|
private String WareHouseType;
|
|
private String WareHouseType_DB;
|
|
private String Keeper;
|
|
private String CompanyID;
|
|
private String ValidStock;
|
|
private String UseLocation;
|
|
|
|
|
|
}
|