package com.changhong.epc.bean.count.msg; import java.util.Map; import java.util.Set; import lombok.Data; @Data public class AppStanderMsg { /** * 费用类型name */ private String costTypeName; /** * 报销方式name */ private String expendWayName; /** * 标准code */ private Set> normCode; /** * 错误信息 */ private String errMsg; public AppStanderMsg(String costTypeName, String expendWayName, Set> normCode, String errMsg) { super(); this.costTypeName = costTypeName; this.expendWayName = expendWayName; this.normCode = normCode; this.errMsg = errMsg; } public AppStanderMsg() { super(); } }