package com.ruoyi.production.bean.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDate;
|
|
@Data
|
@Schema(name = "ProductionAccountVo", description = "生产核算分页返回对象")
|
public class ProductionAccountVo {
|
|
@Schema(description = "客户合同号")
|
private String customerContractNo;
|
|
@Schema(description = "项目名称")
|
private String projectName;
|
|
@Schema(description = "客户名称")
|
private String customerName;
|
|
@Schema(description = "产品大类")
|
private String productCategory;
|
|
@Schema(description = "规格型号")
|
private String specificationModel;
|
|
@Schema(description = "单位")
|
private String unit;
|
|
@Schema(description = "生产人ID")
|
private Long schedulingUserId;
|
|
@Schema(description = "生产人名称")
|
private String schedulingUserName;
|
|
@Schema(description = "工资")
|
private BigDecimal wages;
|
|
@Schema(description = "生产数量")
|
private BigDecimal finishedNum;
|
|
@Schema(description = "工时定额")
|
private BigDecimal workHours;
|
|
@Schema(description = "工序")
|
private String process;
|
|
@Schema(description = "生产日期")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private LocalDate schedulingDate;
|
|
@Schema(description = "生产月份(yyyy-MM)")
|
private String schedulingMonth;
|
}
|