| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.fzzy.sys.manager.print; |
| | | |
| | | import com.fzzy.igds.domain.InoutRecord; |
| | | import com.fzzy.igds.service.InoutRecordService; |
| | | import org.springframework.stereotype.Component; |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * @Description åæ®æå° |
| | | * @Author CZT |
| | | * @Date 2025/12/4 9:27 |
| | | */ |
| | | @Component |
| | | public class PrintManager { |
| | | |
| | | @Resource |
| | | private InoutRecordService inoutRecordService; |
| | | |
| | | /** |
| | | * è·åå
¥åºè¿ç£
åæ°æ®ä¿¡æ¯ |
| | | * |
| | | * @param data |
| | | * @return |
| | | */ |
| | | public String inWeightBill(InoutRecord data) { |
| | | return inoutRecordService.inWeightBill( data); |
| | | } |
| | | |
| | | /** |
| | | * è·ååºåºè¿ç£
å |
| | | * |
| | | * @param data |
| | | * @return |
| | | */ |
| | | public String outWeightBill(InoutRecord data) { |
| | | |
| | | return inoutRecordService.outWeightBill( data); |
| | | } |
| | | |
| | | } |