package com.matrix.system.hive.bean; 
 | 
  
 | 
import java.io.Serializable; 
 | 
import java.util.Date; 
 | 
/** 
 | 
 * 
 | 
 * @date 2016-12-22 10:46 
 | 
 */ 
 | 
public class LastestWorkBeatuistaff implements Serializable{ 
 | 
  
 | 
    private static final long serialVersionUID = 1L;  
 | 
  
 | 
     
 | 
    private Long  id; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 美疗师id 
 | 
     */ 
 | 
    private Long  staffId; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 员工姓名呢(为了方便美疗师id对应的员工姓名) 
 | 
     */ 
 | 
    private String  staffName; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 更新时间 
 | 
     */ 
 | 
    private Date  changeDate; 
 | 
             
 | 
    /** 
 | 
     * 门店ID 
 | 
     */ 
 | 
    private Long shopId; 
 | 
     
 | 
    public Long getShopId() { 
 | 
        return shopId; 
 | 
    } 
 | 
  
 | 
    public void setShopId(Long shopId) { 
 | 
        this.shopId = shopId; 
 | 
    } 
 | 
  
 | 
    public Long getId() { 
 | 
        return id; 
 | 
    } 
 | 
        
 | 
       public void setId(Long id) { 
 | 
        this.id=id; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Long getStaffId() { 
 | 
        return staffId; 
 | 
    } 
 | 
        
 | 
       public void setStaffId(Long staffId) { 
 | 
        this.staffId=staffId; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getSuName() { 
 | 
        return staffName; 
 | 
    } 
 | 
        
 | 
       public void setStaffName(String staffName) { 
 | 
        this.staffName=staffName; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Date getChangeDate() { 
 | 
        return changeDate; 
 | 
    } 
 | 
        
 | 
       public void setChangeDate(Date changeDate) { 
 | 
        this.changeDate=changeDate; 
 | 
    } 
 | 
  
 | 
    @Override 
 | 
    public String toString() { 
 | 
        return "LastestWorkBeatuistaff [id=" + id + ", staffId=" + staffId 
 | 
                + ", staffName=" + staffName + ", changeDate=" + changeDate 
 | 
                + "]"; 
 | 
    } 
 | 
        
 | 
        
 | 
   
 | 
} 
 |