Sign in

潘钊 / bsth_control · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • bsth_control
  • ..
  • realcontrol
  • ChildTaskPlan.java
  • 加字典
      1d844605
    潘钊 authored
    2016-06-20 15:19:05 +0800  
    Browse Code »
ChildTaskPlan.java 400 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
package com.bsth.entity.realcontrol;

/**
 * 
 * @ClassName: ChildTaskPlan 
 * @Description: TODO(子任务计划) 
 * @author PanZhao
 * @date 2016年6月20日 上午11:22:22 
 *
 */
public class ChildTaskPlan {
	
	private Long id;
	
	/**
	 * 开始时间
	 * HH:mm
	 */
	private String startTimeStr;
	
	/**
	 * 结束时间
	 * HH:mm
	 */
	private String endTimeStr;
	
}