package com.xcong.farmer.cms.modules.member.entity;
|
|
import com.xcong.farmer.cms.common.system.base.BaseEntity;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
|
/**
|
* 会员信息实体
|
*
|
* @author wzy
|
* @date 2020-05-12
|
**/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class MemberEntity extends BaseEntity implements Serializable {
|
private static final long serialVersionUID = -1L;
|
|
private String username;
|
|
private String password;
|
}
|