52 lines
1.3 KiB
Vue
52 lines
1.3 KiB
Vue
/**
|
|
* @Project: emis
|
|
* @Title: EmisTmsSiteBatchLoading.java
|
|
* @author linfso
|
|
* @date 2024-06-03 05:50:57
|
|
* @Copyright: ShangHai Duta 2022 All rights reserved.
|
|
* @version v1.0
|
|
* @Description: <p> TMS组批次配载 实体类 </p>
|
|
*/
|
|
|
|
package com.xdadan.erp.emis.domain;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import com.xdadan.erp.common.annotation.Excel;
|
|
import com.xdadan.erp.common.core.domain.BaseEntity;
|
|
import com.xdadan.erp.common.core.domain.TreeEntity;
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
* @ClassName EmisTmsSiteBatchLoading
|
|
* @Description TMS组批次配载
|
|
* @author linfso
|
|
* @date 2024-06-03 05:50:57
|
|
*/
|
|
@Data
|
|
public class EmisTmsSiteBatchLoading extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/* id */
|
|
private Long id;
|
|
/* 批次号 */
|
|
private String batchNo;
|
|
/* 位置编号 行列 00---05 00-20 3行6列 */
|
|
private String posNo;
|
|
/* 行坐标 */
|
|
private String row;
|
|
/* 列坐标 */
|
|
private String col;
|
|
/* 层坐标 */
|
|
private String layer;
|
|
/* 位置描述 */
|
|
private String posDesc;
|
|
|
|
}
|