2026-04-23 c247f5bf64c98595cc7e4efc9e1ae7ff1df79c11
src/main/java/com/ruoyi/production/bean/dto/SalesLedgerProductionAccountingDto.java
@@ -1,20 +1,20 @@
package com.ruoyi.production.bean.dto;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDate;
@Data
public class SalesLedgerProductionAccountingDto {
    @ApiModelProperty("用户ID")
    @Schema(description = "用户ID")
    private Long userId;
    @ApiModelProperty("用户名称")
    @Schema(description = "用户名称")
    private String userName;
    @ApiModelProperty("工序")
    @Schema(description = "工序")
    private String process;
    @ApiModelProperty("开始日期")
    @Schema(description = "开始日期")
    private LocalDate startDate;
    @ApiModelProperty("结束日期")
    @Schema(description = "结束日期")
    private LocalDate endDate;
}