|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package org.dromara.mes.domain.bo;
|
|
|
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
|
import org.dromara.mes.domain.ProdProductPlanDetail;
|
|
|
|
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
|
|
|
|
import org.dromara.common.core.validate.AddGroup;
|
|
|
|
@ -9,6 +10,7 @@ import lombok.Data;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import jakarta.validation.constraints.*;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
@ -72,7 +74,7 @@ public class ProdProductPlanDetailBo extends BaseEntity {
|
|
|
|
|
* 完成数量
|
|
|
|
|
*/
|
|
|
|
|
@NotNull(message = "完成数量不能为空", groups = {AddGroup.class, EditGroup.class})
|
|
|
|
|
private Long completeAmount;
|
|
|
|
|
private BigDecimal completeAmount;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 单位ID
|
|
|
|
@ -174,5 +176,8 @@ public class ProdProductPlanDetailBo extends BaseEntity {
|
|
|
|
|
*/
|
|
|
|
|
private Long workshopId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 余料数量
|
|
|
|
|
*/
|
|
|
|
|
private BigDecimal remainingAmount;
|
|
|
|
|
}
|
|
|
|
|