salary.java

来自「l劳动力管理系统」· Java 代码 · 共 133 行

JAVA
133
字号
package com.hr.vo;
/**
 * @hibernate.class
 * table="T_Salary"
 */
public class Salary {
    private Employee employee;
    private Double monthSalary;
    private Integer unWorkDays;
    private Double forMobile;
    private Double forBus;
    private Double allowance;
    private Integer additionDays;  private String month;  private Long salaryUID;
    public Salary() {
    }
    /**
                * @hibernate.id
                *	column="SalaryUID"
                *	generator-class="hilo"
                *	unsaved-value="null"
          */
         public Long getSalaryUID() {
       return salaryUID;
   }

    public void setSalaryUID(Long salaryUID) {
        this.salaryUID = salaryUID;
    }
    /**
          * @hibernate.many-to-one
          * column="EmployeeUID"
          * 	cascade="none"
          * class="com.hr.vo.Employee"
    */
   public Employee getEmployee() {
       return employee;
   }

    public void setEmployee(Employee employee) {
        this.employee = employee;
    }
    /**
           * @hibernate.property
           * column="MonthSalary"
     */
    public Double getMonthSalary() {
      return monthSalary;
  }

    public void setMonthSalary(Double monthSalary) {
        this.monthSalary = monthSalary;
    }
    /**
           * @hibernate.property
           * column="UnWorkDays"
     */
    public Integer getUnWorkDays() {
      return unWorkDays;
  }

    public void setUnWorkDays(Integer unWorkDays) {
        this.unWorkDays = unWorkDays;
    }
    /**
           * @hibernate.property
           * column="ForMobile"
     */
    public Double getForMobile() {
       return forMobile;
   }

    public void setForMobile(Double forMobile) {
        this.forMobile = forMobile;
    }
    /**
           * @hibernate.property
           * column="ForBus"
     */
    public Double getForBus() {
        return forBus;
    }

    public void setForBus(Double forBus) {
        this.forBus = forBus;
    }
    /**
           * @hibernate.property
           * column="Allowance"
     */
    public Double getAllowance() {
       return allowance;
   }

    public void setAllowance(Double allowance) {
        this.allowance = allowance;
    }
    /**
           * @hibernate.property
           * column="AdditionDays"
     */
    public Integer getAdditionDays() {
       return additionDays;
   }

    public void setAdditionDays(Integer additionDays) {
        this.additionDays = additionDays;
    }  public String getMonth() {    return month;  }  public void setMonth(String month) {    this.month = month;  }















}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?