Subtask.java 2.32 KB
/**
 * @(#)Subtask.java 
 *
 * Copyright (c) 2014-2014  苏州犀牛网络科技有限公司 版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.task.domain;

import com.xiniunet.framework.base.BaseDomain;

import java.util.Date;

/**
 * Created by 沈振家 on 2016-11-28 16:23:01.
 * @author 沈振家
 */
public class Subtask extends BaseDomain {

    
    /**
     * 主键 
     */
    private  Long   id;
    
    /**
     * 承租人ID 
     */
    private  Long   tenantId;
    
    /**
     * 任务ID 
     */
    private  Long   taskId;
    
    /**
     * 名称 
     */
    private  String   name;
    
    /**
     * 是否完成 
     */
    private  Boolean   isDone;
    
    /**
     * 完成时间 
     */
    private  Date   doTime;
    
    /**
     * 完成用户ID 
     */
    private  Long   doUserId;
    
    /**
     * 完成用户姓名 
     */
    private  String   doUserName;
    

    
    public Long getId() {
    return this.id;
    }

    public void setId(Long  id) {
    this.id = id;
    }
    
    public Long getTenantId() {
    return this.tenantId;
    }

    public void setTenantId(Long  tenantId) {
    this.tenantId = tenantId;
    }
    
    public Long getTaskId() {
    return this.taskId;
    }

    public void setTaskId(Long  taskId) {
    this.taskId = taskId;
    }
    
    public String getName() {
    return this.name;
    }

    public void setName(String  name) {
    this.name = name;
    }
    
    public Boolean getIsDone() {
    return this.isDone;
    }

    public void setIsDone(Boolean  isDone) {
    this.isDone = isDone;
    }
    
    public Date getDoTime() {
    return this.doTime;
    }

    public void setDoTime(Date  doTime) {
    this.doTime = doTime;
    }
    
    public Long getDoUserId() {
    return this.doUserId;
    }

    public void setDoUserId(Long  doUserId) {
    this.doUserId = doUserId;
    }
    
    public String getDoUserName() {
    return this.doUserName;
    }

    public void setDoUserName(String  doUserName) {
    this.doUserName = doUserName;
    }
    
}