59 lines
1.2 KiB
Java
59 lines
1.2 KiB
Java
package com.gear.oa.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.gear.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@TableName("gear_stock_io_order_detail")
|
|
public class GearStockIoOrderDetail extends BaseEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId(value = "detail_id")
|
|
private Long detailId;
|
|
|
|
private Long orderId;
|
|
|
|
private Integer lineNo;
|
|
|
|
private String itemType;
|
|
|
|
private Long itemId;
|
|
|
|
private Integer materialTypeSnapshot;
|
|
|
|
private String itemName;
|
|
|
|
private String specName;
|
|
|
|
private Long warehouseId;
|
|
|
|
private Long fromWarehouseId;
|
|
|
|
private BigDecimal quantity;
|
|
|
|
private String unit;
|
|
|
|
private String batchNo;
|
|
|
|
private BigDecimal unitPrice;
|
|
|
|
private BigDecimal amount;
|
|
|
|
private String sourceDetailNo;
|
|
|
|
private Long reversalDetailId;
|
|
|
|
private String remark;
|
|
|
|
@TableLogic(value = "0", delval = "2")
|
|
private String delFlag;
|
|
}
|