| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.whyc.config.EnumWorksheetType; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.apache.ibatis.type.Alias; |
| | | |
| | |
| | | private Integer level; |
| | | /** |
| | | * 工单状态: |
| | | * 0:员工处理中(已驳回) |
| | | * 0:已驳回到所属人,完结 |
| | | * 1:经理处理中 |
| | | * 2:总经理处理中 |
| | | * 5:归档 |
| | |
| | | private Integer status; |
| | | @ApiModelProperty("工单结束意见") |
| | | private String endReason; |
| | | |
| | | /** |
| | | * {@link EnumWorksheetType#getType()} |
| | | */ |
| | | @ApiModelProperty("工单类型:1-bom,2-散装件,3-bom-散装件") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty("流程的下个处理人") |
| | | @TableField(exist = false) |
| | |
| | | private String dealDesc; |
| | | |
| | | @TableField(exist = false) |
| | | private String createUser; |
| | | private DocUser createUser; |
| | | |
| | | @ApiModelProperty("待审批产品bom") |
| | | @ApiModelProperty("待审批产品") |
| | | @TableField(exist = false) |
| | | private List<ProductBomApproving> approvingBomList; |
| | | private ProductApproving productApproving; |
| | | |
| | | @TableField(exist = false) |
| | | private LinkedList<WorksheetLink> links; |
| | | |
| | | @TableField(exist = false) |
| | | private DocUser approvingUser; |
| | | |
| | | @ApiModelProperty("待审批物料") |
| | | @TableField(exist = false) |
| | | private List<MaterialApproving> mApprovingList; |
| | | |
| | | @TableField(exist = false) |
| | | private List<MaterialProductApproving> mpApprovingList; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | this.status = status; |
| | | } |
| | | |
| | | public String getCreateUser() { |
| | | public DocUser getCreateUser() { |
| | | return createUser; |
| | | } |
| | | |
| | | public void setCreateUser(String createUser) { |
| | | public void setCreateUser(DocUser createUser) { |
| | | this.createUser = createUser; |
| | | } |
| | | |
| | |
| | | this.links = links; |
| | | } |
| | | |
| | | public List<ProductBomApproving> getApprovingBomList() { |
| | | return approvingBomList; |
| | | public ProductApproving getProductApproving() { |
| | | return productApproving; |
| | | } |
| | | |
| | | public void setApprovingBomList(List<ProductBomApproving> approvingBomList) { |
| | | this.approvingBomList = approvingBomList; |
| | | public void setProductApproving(ProductApproving productApproving) { |
| | | this.productApproving = productApproving; |
| | | } |
| | | |
| | | public DocUser getApprovingUser() { |
| | | return approvingUser; |
| | | } |
| | | |
| | | public void setApprovingUser(DocUser approvingUser) { |
| | | this.approvingUser = approvingUser; |
| | | } |
| | | |
| | | public Integer getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(Integer type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public List<MaterialApproving> getMApprovingList() { |
| | | return mApprovingList; |
| | | } |
| | | |
| | | public void setMApprovingList(List<MaterialApproving> mApprovingList) { |
| | | this.mApprovingList = mApprovingList; |
| | | } |
| | | |
| | | public List<MaterialProductApproving> getMpApprovingList() { |
| | | return mpApprovingList; |
| | | } |
| | | |
| | | public void setMpApprovingList(List<MaterialProductApproving> mpApprovingList) { |
| | | this.mpApprovingList = mpApprovingList; |
| | | } |
| | | } |