package com.thhy.materials.modules.biz.pipeplanmonth.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-04-18 09:10:58
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class PipePlanMonth implements Serializable {
|
|
|
|
@Idkey
|
private String id;
|
|
|
/**
|
* 计划ID
|
*/
|
|
|
private String pipePlanId;
|
|
/**
|
* 月份
|
*/
|
|
|
private Integer month;
|
|
/**
|
* 生产计划
|
*/
|
|
|
private double planProduct;
|
}
|