AdditionalDeductionDto.java 477 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package cn.timer.api.dto.xcgl;

import java.io.Serializable;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class AdditionalDeductionDto implements Serializable {
	/**
	* 
	*/
	private static final long serialVersionUID = -3829908201010471272L;
	int zxfjid;
ilal committed
18
	String date;
yuquan.zhu committed
19
	String name;
ilal committed
20
	String phone;
yuquan.zhu committed
21 22 23 24 25 26 27 28
	String empNum;
	int zljy;
	int zfdk;
	int zfzj;
	int sylr;
	int jxjy;
	int lj;
}