Files
klp-oa/klp-wms/src/main/java/com/klp/domain/bo/WmsFinancialDocumentBo.java
Joshi b70b390ff7 refactor(service):优化物料卷服务查询条件
- 移除WmsFinancialDocumentBo中冗余的WmsStockIoDetail导入
- 在WmsMaterialCoilServiceImpl中增加team字段筛选条件
- 完善查询条件判断逻辑,提升代码可读性
2025-11-01 09:19:32 +08:00

73 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain.bo;
import com.klp.common.core.domain.BaseEntity;
import com.klp.domain.WmsJournalEntry;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
/**
* 财务单据业务对象 wms_financial_document
*
* @author klp
* @date 2025-08-13
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsFinancialDocumentBo extends BaseEntity {
/**
* 单据ID主键
*/
private Long documentId;
/**
* 单据编号
*/
private String docNo;
/**
* 单据类型
*/
private String docType;
/**
* 单据日期
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date docDate;
/**
* 单据金额
*/
private BigDecimal amount;
/**
* 关联订单ID
*/
private Long relatedOrderId;
/**
* 单据状态
*/
private String status;
/**
* 备注
*/
private String remark;
//凭证明细
private List<WmsJournalEntry> details;
}