| | |
| | | |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 计划ID */ |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | @Schema(description = "计划ID") |
| | | private Long id; |
| | | |
| | |
| | | private String type; |
| | | |
| | | /** 计划排产区域 多选,枚举 */ |
| | | @Excel(name = "计划排产区域 多选,枚举") |
| | | @Schema(description = "计划排产区域 多选,枚举") |
| | | @Excel(name = "计划排产区域 多选,枚举 参考") |
| | | @Schema(description = "计划排产区域 多选,枚举 参考字典 aps_area") |
| | | private String area; |
| | | |
| | | /** 计划排产规则 */ |
| | | @Excel(name = "计划排产规则") |
| | | @Schema(description = "计划排产规则") |
| | | @Schema(description = "计划排产规则 参考字典 aps_plan_rule") |
| | | private String rule; |
| | | |
| | | @TableField(exist = false) |