| | |
| | | package com.ruoyi.system.domain.vo; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | |
| | | |
| | | /** 归属部门ID */ |
| | | private Long deptId; |
| | | |
| | | /** 归属部门ID列表(用于查询多个分公司的任务) */ |
| | | private List<Long> deptIds; |
| | | |
| | | /** 计划开始时间-开始 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | |
| | | public void setDeptId(Long deptId) { |
| | | this.deptId = deptId; |
| | | } |
| | | |
| | | public List<Long> getDeptIds() { |
| | | return deptIds; |
| | | } |
| | | |
| | | public void setDeptIds(List<Long> deptIds) { |
| | | this.deptIds = deptIds; |
| | | } |
| | | |
| | | public Date getPlannedStartTimeBegin() { |
| | | return plannedStartTimeBegin; |