feat(wms): 新增财务单据查询接口并优化相关功能
- 在 IWmsFinancialDocumentService接口中新增 queryPageListDetail 方法 - 在 WmsFinancialDocumentController 中添加 ListListDetail 控制器方法 - 在 WmsFinancialDocumentMapper 接口中新增 selectVoPageDetail 方法 - 在 WmsFinancialDocumentMapper.xml 中添加新的 SQL 查询语句 - 在 WmsFinancialDocumentServiceImpl 中实现 queryPageListDetail 方法 - 更新 WmsFinancialDocumentVo 和 WmsJournalEntryVo 类以支持明细列表查询
This commit is contained in:
@@ -26,7 +26,7 @@ public class WmsJournalEntryVo {
|
||||
* 分录ID(主键)
|
||||
*/
|
||||
@ExcelProperty(value = "分录ID", converter = ExcelDictConvert.class)
|
||||
@ExcelDictFormat(readConverterExp = "主=键")
|
||||
@ExcelDictFormat(readConverterExp = "主键")
|
||||
private Long entryId;
|
||||
|
||||
/**
|
||||
@@ -94,4 +94,11 @@ public class WmsJournalEntryVo {
|
||||
private String remark;
|
||||
|
||||
|
||||
public Long getEntryId() {
|
||||
return entryId;
|
||||
}
|
||||
|
||||
public void setEntryId(Long entryId) {
|
||||
this.entryId = entryId;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user