This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.kiisoo.ic.generalize.entity;
import lombok.Data;
/**
* @Description: 客户概览,零推广VO
* @Author: wangyinjia
* @Date: 2020/4/17
* @Company: kiisoo
* @Version: 1.0
*/
@Data
public class PrivilageOrganizationalRelationVO {
/**大区*/
private Long regionId;
private String region;
/**零售公司*/
private Long companyId;
private String company;
/**客户*/
private Long customerId;
private String customer;
}