| | |
| | | @ApiModelProperty(value= "供应商") |
| | | private String dealer; |
| | | |
| | | @ApiModelProperty(value= "") |
| | | /** |
| | | * 流程 1: 草稿 2: 提交 3: 已读 4: 作业 5: 完成 6: 取消 |
| | | */ |
| | | @ApiModelProperty(value= "流程 1: 草稿 2: 提交 3: 已读 4: 作业 5: 完成 6: 取消") |
| | | private Integer settle; |
| | | |
| | | /** |
| | |
| | | this.settle = settle; |
| | | } |
| | | |
| | | public String getSettle$(){ |
| | | if (null == this.settle){ return null; } |
| | | switch (this.settle){ |
| | | case 1: |
| | | return "草稿"; |
| | | case 2: |
| | | return "提交"; |
| | | case 3: |
| | | return "已读"; |
| | | case 4: |
| | | return "作业"; |
| | | case 5: |
| | | return "完成"; |
| | | case 6: |
| | | return "取消"; |
| | | default: |
| | | return String.valueOf(this.status); |
| | | } |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |