package org.springblade.mdm.basesetting.produceplan.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springblade.core.mp.base.BizEntity;
|
|
/**
|
* 主制计划表
|
*/
|
@Setter
|
@Getter
|
@TableName("mdm_produce_plan")
|
public class ProducePlan extends BizEntity {
|
/**
|
* 专业组长id
|
*/
|
private Long teamLeaderId;
|
/**
|
* 编制工艺员id
|
*/
|
private Long programmerId;
|
/**
|
* 校对工艺员id
|
*/
|
private Long checkerId;
|
|
/**
|
* 高师id
|
*/
|
private Long seniorId;
|
}
|