You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
240 lines
4.4 KiB
240 lines
4.4 KiB
package com.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotations.TableId;
|
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
import javax.validation.constraints.NotBlank;
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import org.apache.commons.beanutils.BeanUtils;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
|
import com.baomidou.mybatisplus.enums.FieldFill;
|
|
import com.baomidou.mybatisplus.enums.IdType;
|
|
|
|
|
|
// 员工缴款
|
|
// 数据库通用操作实体类(普通增删改查)
|
|
// @author
|
|
// @email
|
|
// @date 2021-04-24 15:19:31
|
|
|
|
@TableName("yuangongjiaokuan")
|
|
public class YuangongjiaokuanEntity<T> implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
public YuangongjiaokuanEntity() {
|
|
|
|
}
|
|
|
|
public YuangongjiaokuanEntity(T t) {
|
|
try {
|
|
BeanUtils.copyProperties(this, t);
|
|
} catch (IllegalAccessException | InvocationTargetException e) {
|
|
// TODO Auto-generated catch block
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
// 主键id
|
|
|
|
@TableId
|
|
private Long id;
|
|
// 员工工号
|
|
|
|
|
|
private String yuangonggonghao;
|
|
|
|
// 员工姓名
|
|
|
|
|
|
private String yuangongxingming;
|
|
|
|
// 缴费名称
|
|
|
|
|
|
private String jiaofeimingcheng;
|
|
|
|
// 缴款金额
|
|
|
|
|
|
private Integer jiaokuanjine;
|
|
|
|
// 缴款日期
|
|
|
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd")
|
|
@DateTimeFormat
|
|
private Date jiaokuanriqi;
|
|
|
|
//备注
|
|
|
|
|
|
private String beizhu;
|
|
|
|
// 管理工号
|
|
|
|
|
|
private String guanligonghao;
|
|
|
|
// 管理姓名
|
|
|
|
|
|
private String guanlixingming;
|
|
|
|
// 是否审核
|
|
|
|
|
|
private String sfsh;
|
|
|
|
// 审核回复
|
|
|
|
|
|
private String shhf;
|
|
|
|
//是否支付
|
|
|
|
|
|
private String ispay;
|
|
|
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat
|
|
private Date addtime;
|
|
|
|
public Date getAddtime() {
|
|
return addtime;
|
|
}
|
|
public void setAddtime(Date addtime) {
|
|
this.addtime = addtime;
|
|
}
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
// 设置:员工工号
|
|
|
|
public void setYuangonggonghao(String yuangonggonghao) {
|
|
this.yuangonggonghao = yuangonggonghao;
|
|
}
|
|
// 获取:员工工号
|
|
|
|
public String getYuangonggonghao() {
|
|
return yuangonggonghao;
|
|
}
|
|
//设置:员工姓名
|
|
|
|
public void setYuangongxingming(String yuangongxingming) {
|
|
this.yuangongxingming = yuangongxingming;
|
|
}
|
|
//获取:员工姓名
|
|
|
|
public String getYuangongxingming() {
|
|
return yuangongxingming;
|
|
}
|
|
// 设置:缴费名称
|
|
|
|
public void setJiaofeimingcheng(String jiaofeimingcheng) {
|
|
this.jiaofeimingcheng = jiaofeimingcheng;
|
|
}
|
|
//获取:缴费名称
|
|
|
|
public String getJiaofeimingcheng() {
|
|
return jiaofeimingcheng;
|
|
}
|
|
//设置:缴款金额
|
|
|
|
public void setJiaokuanjine(Integer jiaokuanjine) {
|
|
this.jiaokuanjine = jiaokuanjine;
|
|
}
|
|
// 获取:缴款金额
|
|
|
|
public Integer getJiaokuanjine() {
|
|
return jiaokuanjine;
|
|
}
|
|
// 设置:缴款日期
|
|
|
|
public void setJiaokuanriqi(Date jiaokuanriqi) {
|
|
this.jiaokuanriqi = jiaokuanriqi;
|
|
}
|
|
//获取:缴款日期
|
|
|
|
public Date getJiaokuanriqi() {
|
|
return jiaokuanriqi;
|
|
}
|
|
//设置:备注
|
|
|
|
public void setBeizhu(String beizhu) {
|
|
this.beizhu = beizhu;
|
|
}
|
|
//获取:备注
|
|
|
|
public String getBeizhu() {
|
|
return beizhu;
|
|
}
|
|
//设置:管理工号
|
|
|
|
public void setGuanligonghao(String guanligonghao) {
|
|
this.guanligonghao = guanligonghao;
|
|
}
|
|
//获取:管理工号
|
|
|
|
public String getGuanligonghao() {
|
|
return guanligonghao;
|
|
}
|
|
// 设置:管理姓名
|
|
|
|
public void setGuanlixingming(String guanlixingming) {
|
|
this.guanlixingming = guanlixingming;
|
|
}
|
|
//获取:管理姓名
|
|
|
|
public String getGuanlixingming() {
|
|
return guanlixingming;
|
|
}
|
|
// 设置:是否审核
|
|
|
|
public void setSfsh(String sfsh) {
|
|
this.sfsh = sfsh;
|
|
}
|
|
// 获取:是否审核
|
|
|
|
public String getSfsh() {
|
|
return sfsh;
|
|
}
|
|
//设置:审核回复
|
|
|
|
public void setShhf(String shhf) {
|
|
this.shhf = shhf;
|
|
}
|
|
//获取:审核回复
|
|
|
|
public String getShhf() {
|
|
return shhf;
|
|
}
|
|
//设置:是否支付
|
|
|
|
public void setIspay(String ispay) {
|
|
this.ispay = ispay;
|
|
}
|
|
// 获取:是否支付
|
|
|
|
public String getIspay() {
|
|
return ispay;
|
|
}
|
|
|
|
}
|