| | |
| | | package com.ruoyi.production.dto; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | */ |
| | | @Data |
| | | @ApiModel |
| | | @ExcelIgnoreUnannotated |
| | | public class SalesLedgerProductionAccountingDto extends SalesLedgerProductDto{ |
| | | |
| | | /** |
| | |
| | | * 排产人名称 |
| | | */ |
| | | @ApiModelProperty(value = "生产人名称") |
| | | @Excel(name = "生产人") |
| | | private String schedulingUserName; |
| | | |
| | | |
| | |
| | | * 工资 |
| | | */ |
| | | @ApiModelProperty(value = "工资") |
| | | @Excel(name = "工资") |
| | | private BigDecimal wages; |
| | | |
| | | /** |
| | | * 生产数量 |
| | | */ |
| | | @ApiModelProperty(value = "生产数量") |
| | | @Excel(name = "生产数量") |
| | | private BigDecimal finishedNum; |
| | | |
| | | /** |
| | | * 工时定额 |
| | | */ |
| | | @ApiModelProperty(value = "工时定额") |
| | | @Excel(name = "工时定额") |
| | | private BigDecimal workHours; |
| | | |
| | | /** |
| | | * 工序 |
| | | */ |
| | | @ApiModelProperty(value = "工序") |
| | | @Excel(name = "工序") |
| | | private String process; |
| | | /** |
| | | * 排产日期 |
| | | */ |
| | | @ApiModelProperty(value = "排产日期") |
| | | @Excel(name = "生产日期") |
| | | private String schedulingDate; |
| | | |
| | | @ApiModelProperty(value = "开始时间") |
| | | private String schedulingDateStart; |
| | | private String entryDateStart; |
| | | @ApiModelProperty(value = "结束时间") |
| | | private String schedulingDateEnd; |
| | | private String entryDateEnd; |
| | | |
| | | } |