You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
692 B
37 lines
692 B
package com.epmet.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* @Description
|
|
* @ClassName UserCustomerEntity
|
|
* @Author wangc
|
|
* @date 2020.03.31 13:54
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper=false)
|
|
@TableName("user_customer")
|
|
public class UserCustomerEntity extends BaseEpmetEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 客户Id
|
|
*/
|
|
private String customerId;
|
|
|
|
/**
|
|
* 用户Id
|
|
*/
|
|
private String userId;
|
|
|
|
/**
|
|
* 是否注册 1已注册 0未注册
|
|
*/
|
|
private String isRegister;
|
|
|
|
|
|
}
|
|
|