package com.highdatas.mdm.entity; /** * @author kimi * @description * @date 2020-04-17 12:20 */ public class ViewMappingItem { private String pre; private String fix; public ViewMappingItem(String pre, String fix) { this.pre = pre; this.fix = fix; } public ViewMappingItem() { } public String getPre() { return pre; } public void setPre(String pre) { this.pre = pre; } public String getFix() { return fix; } public void setFix(String fix) { this.fix = fix; } }