package cn.iocoder.yudao.module.aftersales.dal.dataobject.ticket;
|
|
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_ticket_item")
|
@KeySequence("after_sale_ticket_item_seq")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
@Builder
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class AfterSaleTicketItemDO extends BaseDO {
|
|
/**
|
* 编号
|
*/
|
@TableId
|
private Long id;
|
/**
|
* 工单编号,关联 after_sale_ticket.id
|
*/
|
private Long ticketId;
|
/**
|
* 销售订单行编号
|
*/
|
private Long saleOrderItemId;
|
/**
|
* MDM 物料编号
|
*/
|
private Long itemId;
|
/**
|
* 物料编码(冗余)
|
*/
|
private String itemCode;
|
/**
|
* 物料名称(冗余)
|
*/
|
private String itemName;
|
/**
|
* 生产批次编号
|
*/
|
private Long batchId;
|
/**
|
* 生产批次号
|
*/
|
private String batchCode;
|
/**
|
* 销售数量
|
*/
|
private BigDecimal saleQuantity;
|
/**
|
* 退货数量
|
*/
|
private BigDecimal returnQuantity;
|
/**
|
* 是否需要维修
|
*/
|
private Boolean needRepair;
|
/**
|
* 是否需要退货
|
*/
|
private Boolean needReturn;
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
}
|