| | |
| | | package com.aps.core.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.aps.common.core.utils.uuid.IdUtils; |
| | | import com.aps.common.core.utils.uuid.UUID; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import org.springframework.data.annotation.Id; |
| | | |
| | | import javax.annotation.processing.Generated; |
| | | |
| | | /** |
| | | * 零件计划管理对象 aps_part_plan |
| | |
| | | |
| | | /** 主键id */ |
| | | private String id; |
| | | |
| | | /** 主计划员 */ |
| | | @Excel(name = "主计划员") |
| | | @Excel(name = "主计划") |
| | | private String masterPlanner; |
| | | |
| | | /** 周日 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "周日", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @Excel(name = "周日", width = 30, dateFormat = "MM-dd") |
| | | private Date weekDay; |
| | | |
| | | /** 周度 */ |
| | |
| | | private String nextProcessDeparment; |
| | | |
| | | /** 是否挂起 */ |
| | | @Excel(name = "是否挂起") |
| | | // @Excel(name = "是否挂起") |
| | | private Integer isSuspended; |
| | | |
| | | /** 是否挂起 */ |
| | | @Excel(name = "是否挂起") |
| | | private String isSuspendedTxt; |
| | | /** 外协标识 */ |
| | | @Excel(name = "外协标识") |
| | | private Integer isOutsourcing; |
| | | private String isOutsourcing; |
| | | |
| | | /** 账套 */ |
| | | @Excel(name = "账套") |
| | |
| | | return isSuspended; |
| | | } |
| | | |
| | | public void setIsOutsourcing(Integer isOutsourcing) |
| | | public void setIsOutsourcing(String isOutsourcing) |
| | | { |
| | | this.isOutsourcing = isOutsourcing; |
| | | } |
| | | |
| | | public Integer getIsOutsourcing() |
| | | public String getIsOutsourcing() |
| | | { |
| | | return isOutsourcing; |
| | | } |
| | |
| | | .append("hasRisk", getHasRisk()) |
| | | .toString(); |
| | | } |
| | | |
| | | public String getIsSuspendedTxt() { |
| | | return isSuspendedTxt; |
| | | } |
| | | |
| | | public void setIsSuspendedTxt(String isSuspendedTxt) { |
| | | this.isSuspendedTxt = isSuspendedTxt; |
| | | } |
| | | } |