InsuranceSchemeDto.java 726 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package cn.timer.api.dto.sbgjj;

import java.io.Serializable;

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

@Data
@AllArgsConstructor
@NoArgsConstructor
public class InsuranceSchemeDto implements Serializable {

	private static final long serialVersionUID = 5454190307549431744L;
15
	
yuquan.zhu committed
16 17 18 19 20 21 22 23 24 25 26
	int id;
	String fwf;//服务费
	String insuredcities;//参保城市
	String name;//参保名称
	String shebaoname;//社保参保方案名称
	SocialfundDto[] shebao;
	int shebaoid;
	String gongjijinname;//公积金参保方案名称
	SocialfundDto[] gongjijin;
	int gongjijinid;
	
ilal committed
27 28
	Boolean isGjjbl;//0:不办理;1:办理
	
yuquan.zhu committed
29 30 31 32 33 34 35 36
	String sbmin;
	String gjjmin;
	
	
	String sbmax;
	String gjjmax;

}