| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.bean.dto; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class SalesLedgerProductionAccountingDto { |
| | | @Schema(description = "ç¨æ·ID") |
| | | private Long userId; |
| | | @Schema(description = "ç¨æ·åç§°") |
| | | private String userName; |
| | | @Schema(description = "å·¥åº") |
| | | private String process; |
| | | @Schema(description = "å¼å§æ¥æ") |
| | | private LocalDate startDate; |
| | | @Schema(description = "ç»ææ¥æ") |
| | | private LocalDate endDate; |
| | | } |