| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.aps.common.core.annotation.Excel; |
| | |
| | | */ |
| | | @TableName("aps_plan_cycle") |
| | | @Schema(description = "计划排产周期管理实体类") |
| | | @Data |
| | | public class ApsPlanCycle extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | @Id |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | private Long id; |
| | | |
| | | /** 周期类型 日/月 */ |
| | |
| | | /** 计划ID */ |
| | | @Excel(name = "计划ID") |
| | | @Schema(description = "计划ID") |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | private Long planId; |
| | | |
| | | public void setType(String type) |