- 在 WmsOrderDetail、WmsOrderDetailBo 和 WmsOrderDetailVo 中添加 groupId 字段 - 更新 WmsOrderDetailMapper.xml,添加 group_id 列的映射
85 lines
1.5 KiB
Java
85 lines
1.5 KiB
Java
package com.klp.domain.vo;
|
|
|
|
import java.math.BigDecimal;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
* 订单明细视图对象 wms_order_detail
|
|
*
|
|
* @author Joshi
|
|
* @date 2025-07-18
|
|
*/
|
|
@Data
|
|
@ExcelIgnoreUnannotated
|
|
public class WmsOrderDetailVo {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 明细ID
|
|
*/
|
|
@ExcelProperty(value = "明细ID")
|
|
private Long detailId;
|
|
|
|
/**
|
|
* 订单ID
|
|
*/
|
|
@ExcelProperty(value = "订单ID")
|
|
private Long orderId;
|
|
|
|
/**
|
|
* 产品ID
|
|
*/
|
|
@ExcelProperty(value = "产品ID")
|
|
private Long productId;
|
|
|
|
/**
|
|
* 产品数量
|
|
*/
|
|
@ExcelProperty(value = "产品数量")
|
|
private BigDecimal quantity;
|
|
|
|
/**
|
|
* 单位
|
|
*/
|
|
@ExcelProperty(value = "单位")
|
|
private String unit;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
@ExcelProperty(value = "备注")
|
|
private String remark;
|
|
|
|
/**
|
|
* 产品名称
|
|
*/
|
|
@ExcelProperty(value = "产品名称")
|
|
private String productName;
|
|
/**
|
|
* 产品编码
|
|
*/
|
|
@ExcelProperty(value = "产品编码")
|
|
private String productCode;
|
|
|
|
/**
|
|
* 含税单价
|
|
*/
|
|
@ExcelProperty(value = "含税单价")
|
|
private BigDecimal taxPrice;
|
|
|
|
/**
|
|
* 无税单价
|
|
*/
|
|
@ExcelProperty(value = "无税单价")
|
|
private BigDecimal noTaxPrice;
|
|
|
|
/**
|
|
* 产品规范组ID
|
|
*/
|
|
private Long groupId;
|
|
}
|