107 lines
2.0 KiB
Plaintext
107 lines
2.0 KiB
Plaintext
package com.cmeim.stock.po;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
import lombok.Data;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
import javax.persistence.TableGenerator;
|
|
import java.io.Serializable;
|
|
|
|
@Data
|
|
@Entity
|
|
@Table(name = "ba_location_recommend")
|
|
public class BaLocationRecommend implements Serializable {
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
@Column(name = "id")
|
|
@ApiParam(value = "null")
|
|
private Long id;
|
|
|
|
/**
|
|
* 客户编码
|
|
*/
|
|
@Column(name = "customer_code")
|
|
@ApiParam(value = "客户编码")
|
|
private String customerCode;
|
|
|
|
/**
|
|
* 库位ID
|
|
*/
|
|
@Column(name = "location_id")
|
|
@ApiParam(value = "库位ID")
|
|
private Integer locationId;
|
|
|
|
/**
|
|
* 库位编码
|
|
*/
|
|
@Column(name = "location_code")
|
|
@ApiParam(value = "库位编码")
|
|
private String locationCode;
|
|
|
|
/**
|
|
* 库位名称
|
|
*/
|
|
@Column(name = "location_name")
|
|
@ApiParam(value = "库位名称")
|
|
private String locationName;
|
|
|
|
/**
|
|
* 仓库ID
|
|
*/
|
|
@Column(name = "warehouse_id")
|
|
@ApiParam(value = "仓库ID")
|
|
private Long warehouseId;
|
|
|
|
/**
|
|
* 仓库编码
|
|
*/
|
|
@Column(name = "warehouse_code")
|
|
@ApiParam(value = "仓库编码")
|
|
private String warehouseCode;
|
|
|
|
/**
|
|
* 仓库名称
|
|
*/
|
|
@Column(name = "warehouse_name")
|
|
@ApiParam(value = "仓库名称")
|
|
private String warehouseName;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
@Column(name = "created_by")
|
|
@ApiParam(value = "创建人")
|
|
private String createdBy;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
@Column(name = "created_dt")
|
|
@ApiParam(value = "创建时间")
|
|
private String createdDt;
|
|
|
|
/**
|
|
* 修改人
|
|
*/
|
|
@Column(name = "updated_by")
|
|
@ApiParam(value = "修改人")
|
|
private String updatedBy;
|
|
|
|
/**
|
|
* 修改时间
|
|
*/
|
|
@Column(name = "updated_dt")
|
|
@ApiParam(value = "修改时间")
|
|
private String updatedDt;
|
|
|
|
}
|