| | |
| | | private List<AttachLock> attachLocks; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "统计附件状态 存在未锁定的附件:1 无附件或者附件全部锁定:0") |
| | | private int attachFlag; |
| | | @ApiModelProperty(value = "是否存在附件:1存在,0无") |
| | | private int hasAttachFlag; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "附件目录下的文件列表") |
| | | private List attachFileList; |
| | | |
| | | |
| | | public Integer getId() { |
| | |
| | | this.attachLocks = attachLocks; |
| | | } |
| | | |
| | | public int getAttachFlag() { |
| | | return attachFlag; |
| | | public int getHasAttachFlag() { |
| | | return hasAttachFlag; |
| | | } |
| | | |
| | | public void setAttachFlag(int attachFlag) { |
| | | this.attachFlag = attachFlag; |
| | | public void setHasAttachFlag(int hasAttachFlag) { |
| | | this.hasAttachFlag = hasAttachFlag; |
| | | } |
| | | |
| | | public List getAttachFileList() { |
| | | return attachFileList; |
| | | } |
| | | |
| | | public void setAttachFileList(List attachFileList) { |
| | | this.attachFileList = attachFileList; |
| | | } |
| | | } |