package org.dromara.qa.analy.domain.vo;
|
|
import java.util.Date;
|
import java.util.List;
|
|
import org.dromara.qa.analy.domain.StoreSilkInfo;
|
import org.dromara.qa.md.domain.bo.MdShiftBo;
|
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
import cn.idev.excel.annotation.ExcelProperty;
|
import io.github.linpeilie.annotations.AutoMapper;
|
import lombok.Data;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
|
|
/**
|
* 储丝柜产量视图对象 oracle_store_silk
|
*
|
* @author zhuguifei
|
* @date 2026-03-02
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
@AutoMapper(target = StoreSilkInfo.class)
|
public class StoreSilkInfoVo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@ExcelProperty(value = "id")
|
private Long id;
|
|
/**
|
* 牌号
|
*/
|
@ExcelProperty(value = "牌号")
|
private String materialname;
|
|
/**
|
* 批次号
|
*/
|
@ExcelProperty(value = "批次号")
|
private String batchcode;
|
|
/**
|
* 投料日期
|
*/
|
@ExcelProperty(value = "投料日期")
|
private Date actualstarttime;
|
|
/**
|
* 投料重量
|
*/
|
@ExcelProperty(value = "投料重量")
|
private Long jobinput;
|
|
/**
|
* 损耗重量
|
*/
|
@ExcelProperty(value = "损耗重量")
|
private Long weightloss;
|
|
/**
|
* 出叶丝率
|
*/
|
@ExcelProperty(value = "出叶丝率")
|
private Long slkrate;
|
|
/**
|
* 储丝柜重量
|
*/
|
@ExcelProperty(value = "储丝柜重量")
|
private Long weight;
|
|
/**
|
* 储丝柜出料开始时间
|
*/
|
@ExcelProperty(value = "储丝柜出料开始时间")
|
private Date distimebegin;
|
|
/**
|
* 储丝柜出料结束时间
|
*/
|
@ExcelProperty(value = "储丝柜出料结束时间")
|
private Date distimeend;
|
|
/**
|
* 柜子号(末位)
|
*/
|
@ExcelProperty(value = "柜子号(末位)")
|
private String siloid;
|
|
// 出料开始结束时间跨越班次列表
|
private List<MdShiftBo> distShiftList;
|
|
private Double rollerOutput;
|
private Double packerOutput;
|
|
/**
|
* 卷接机产量明细
|
*/
|
private List<StoreSilkDetailVo> rollerDetailList;
|
|
/**
|
* 包装机产量明细
|
*/
|
private List<StoreSilkDetailVo> packerDetailList;
|
}
|