package com.kiisoo.ic.employee.entity; import lombok.Data; /** * @ClassName: CpUserCustomerRelationDO * @Description: * @Auther: yechenhao * @Date: 2020/5/14 0008 14:56 * @Version: */ @Data public class CpUserCustomerRelationDO { /** * 客户userId */ private String customerUserId; /** * 企业微信账号 */ private String cpUserId; /** * privilage_cp_user主键 */ private String cpId; }