package cn.iocoder.yudao.module.aftersales.dal.dataobject.returnobj;
|
|
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
import com.baomidou.mybatisplus.annotation.KeySequence;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 售后退货明细行 DO
|
*/
|
@TableName("after_sale_return_item")
|
@KeySequence("after_sale_return_item_seq")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
@Builder
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class AfterSaleReturnItemDO extends BaseDO {
|
|
/**
|
* 编号
|
*/
|
@TableId
|
private Long id;
|
/**
|
* 退货申请编号,关联 after_sale_return.id
|
*/
|
private Long returnId;
|
/**
|
* 工单明细行编号
|
*/
|
private Long ticketItemId;
|
/**
|
* MDM 物料编号
|
*/
|
private Long itemId;
|
/**
|
* 物料编码(冗余)
|
*/
|
private String itemCode;
|
/**
|
* 物料名称(冗余)
|
*/
|
private String itemName;
|
/**
|
* 批次编号
|
*/
|
private Long batchId;
|
/**
|
* 批次号
|
*/
|
private String batchCode;
|
/**
|
* 退货数量
|
*/
|
private BigDecimal returnQuantity;
|
/**
|
* 销售单价
|
*/
|
private BigDecimal unitPrice;
|
/**
|
* 退货金额
|
*/
|
private BigDecimal returnPrice;
|
/**
|
* MES 退货单行编号
|
*/
|
private Long mesReturnLineId;
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
}
|