You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bsdgy-server/src/main/java/com/kiisoo/ic/employee/entity/CpUserCustomerRelationDO.java

26 lines
453 B
Java

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;
}