| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.whyc.config.EnumWorksheetType; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private DocUser approvingUser; |
| | | |
| | | @ApiModelProperty("待审批散装件") |
| | | @TableField(exist = false) |
| | | private List<MaterialApproving> cApprovingList; |
| | | |
| | | @TableField(exist = false) |
| | | private List<MaterialProductApproving> cpApprovingList; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | public void setType(Integer type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public List<MaterialApproving> getCApprovingList() { |
| | | return cApprovingList; |
| | | } |
| | | |
| | | public void setCApprovingList(List<MaterialApproving> cApprovingList) { |
| | | this.cApprovingList = cApprovingList; |
| | | } |
| | | |
| | | public List<MaterialProductApproving> getCpApprovingList() { |
| | | return cpApprovingList; |
| | | } |
| | | |
| | | public void setCpApprovingList(List<MaterialProductApproving> cpApprovingList) { |
| | | this.cpApprovingList = cpApprovingList; |
| | | } |
| | | } |