com.dlshouwen.core.system.model.UserVO.java Source code

Java tutorial

Introduction

Here is the source code for com.dlshouwen.core.system.model.UserVO.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.dlshouwen.core.system.model;

import com.dlshouwen.core.base.utils.DateUtils;
import com.dlshouwen.jspc.zjpc.model.Expreview;
import org.apache.commons.lang.StringUtils;

/**
 * ?
 * @author cuixubin
 */
public class UserVO {
    /**  */
    private User user;
    /**  */
    private Expreview expreview;
    /**  */
    private String workYears;

    public UserVO() {
    }

    public UserVO(User user, Expreview expreview) {
        this.user = user;
        this.expreview = expreview;
        if (this.user != null && this.user.getWork_date() != null) {
            this.workYears = DateUtils.getYearMonthDayToNow(this.user.getWork_date());
        }
        if (StringUtils.isEmpty(this.workYears)) {
            this.workYears = "";
        }
    }

    public User getUser() {
        return user;
    }

    public void setUser(User user) {
        this.user = user;
    }

    public Expreview getExpreview() {
        return expreview;
    }

    public void setExpreview(Expreview expreview) {
        this.expreview = expreview;
    }

    public String getWorkYears() {
        return workYears;
    }

    public void setWorkYears(String workYears) {
        this.workYears = workYears;
    }

}