|  |  | 
 |  |  |  | 
 |  |  | import com.matrix.core.anotations.Extend; | 
 |  |  | import com.matrix.system.common.bean.SysUsers; | 
 |  |  | import com.matrix.system.hive.plugin.util.DateUtils; | 
 |  |  | import com.matrix.core.tools.DateUtil; | 
 |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
 |  |  |  | 
 |  |  | import java.io.Serializable; | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 服务开始时间 | 
 |  |  |      */ | 
 |  |  |     @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_MM) | 
 |  |  |     @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM) | 
 |  |  |     private Date beginTime; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 服务结束时间 | 
 |  |  |      */ | 
 |  |  |     @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_MM) | 
 |  |  |     @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM) | 
 |  |  |     private Date endTime; | 
 |  |  |  | 
 |  |  |  | 
 |  |  | 
 |  |  |      * 表单服务开始时间 | 
 |  |  |      */ | 
 |  |  |     @Extend | 
 |  |  |     @DateTimeFormat(pattern = DateUtils.HH_mm) | 
 |  |  |     @DateTimeFormat(pattern = DateUtil.HH_mm) | 
 |  |  |     private Date beginTimeForm; | 
 |  |  |     /** | 
 |  |  |      * 服务结束时间 | 
 |  |  |      */ | 
 |  |  |     @Extend | 
 |  |  |     @DateTimeFormat(pattern = DateUtils.HH_mm) | 
 |  |  |     @DateTimeFormat(pattern = DateUtil.HH_mm) | 
 |  |  |     private Date endTimeForm; | 
 |  |  |  | 
 |  |  |  | 
 |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @Extend | 
 |  |  |     @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_SS) | 
 |  |  |     @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_SS) | 
 |  |  |     private Date createTime; | 
 |  |  |  | 
 |  |  |     /** |