package org.jeecg.modules.mdc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecg.common.system.base.entity.JeecgEntity;
|
|
import java.io.Serializable;
|
|
@Data
|
@TableName("mdc_equipment_day_summary")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "mdc_equipment_day_summary对象", description = "设备日产量汇总表")
|
public class MdcEquipmentDaySummary extends JeecgEntity implements Serializable {
|
|
private static final long serialVersionUID = 4440281782659062056L;
|
|
/**
|
* 主键
|
*/
|
private String medId;
|
/**
|
* 单元
|
*/
|
private String dept;
|
/**
|
* 车间(分厂)
|
*/
|
private String workshop;
|
/**
|
* 设备编号
|
*/
|
private String equipmentCode;
|
/**
|
* 当前在制品量(订单计划数量-入库数量-报废数量)
|
*/
|
private Integer demandQty;
|
/**
|
* 今日完工入库量(入库数量)
|
*/
|
private Integer qualifiedQty;
|
/**
|
* 今日投产量(订单数量)
|
*/
|
private Integer planQty;
|
/**
|
* 今日报废数量
|
*/
|
private Integer scrapQty;
|
|
}
|