|
|
|
@ -26,6 +26,8 @@ |
|
|
|
package org.springblade.scheduling.pojo.entity; |
|
|
|
package org.springblade.scheduling.pojo.entity; |
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.NullSerializer; |
|
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
@ -53,6 +55,7 @@ public class PersonAbilityEntity extends BaseEntity { |
|
|
|
* 作业中心Id |
|
|
|
* 作业中心Id |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Schema(description = "作业中心Id") |
|
|
|
@Schema(description = "作业中心Id") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Long workCenterId; |
|
|
|
private Long workCenterId; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
@ -65,6 +68,7 @@ public class PersonAbilityEntity extends BaseEntity { |
|
|
|
* 工序编码 |
|
|
|
* 工序编码 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Schema(description = "工序编码") |
|
|
|
@Schema(description = "工序编码") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Long processId; |
|
|
|
private Long processId; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
@ -77,6 +81,7 @@ public class PersonAbilityEntity extends BaseEntity { |
|
|
|
* 工艺能力Id |
|
|
|
* 工艺能力Id |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Schema(description = "工艺能力Id") |
|
|
|
@Schema(description = "工艺能力Id") |
|
|
|
|
|
|
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
|
|
private Long craftId; |
|
|
|
private Long craftId; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
|