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.
23 lines
532 B
23 lines
532 B
package com.gaotao.modules.trans.entity;
|
|
|
|
import jakarta.persistence.*;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class TransDetail {
|
|
private String site;
|
|
private String transNo;
|
|
private Double itemNo;
|
|
private String partNo;
|
|
private Double transQty;
|
|
private String batchNo;
|
|
private String warehouseId;
|
|
private String direction;
|
|
private String orderRef1;
|
|
private String orderRef2;
|
|
private String orderRef3;
|
|
private String orderRef4;
|
|
private String orderRef5;
|
|
private String remark;
|
|
}
|
|
|