liding
2026-04-23 b2a081508aca058c075a7e6dcf980c52451093b6
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.production.bean.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class UserProductionAccountingDto {
    @ApiModelProperty("用户ID")
    private Long userId;
    @ApiModelProperty("日期")
    private String date;
}