| | |
| | | |
| | | 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; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | |
| | | import java.util.Date; |
| | | import java.util.LinkedList; |
| | |
| | | private Integer status; |
| | | @ApiModelProperty("工单结束意见") |
| | | private String endReason; |
| | | |
| | | /** |
| | | * {@link EnumWorksheetType#getType()} |
| | | */ |
| | | @ApiModelProperty("工单类型:1-bom,2-散装件,3-bom-散装件") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty("流程的下个处理人") |
| | | @TableField(exist = false) |
| | |
| | | public void setApprovingUser(DocUser approvingUser) { |
| | | this.approvingUser = approvingUser; |
| | | } |
| | | |
| | | public Integer getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(Integer type) { |
| | | this.type = type; |
| | | } |
| | | } |