我是靠谱客的博主 不安衬衫,最近开发中收集的这篇文章主要介绍注解@Data JavaBean省去get set 方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Maven 引入
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.22</version>
</dependency>

 

import lombok.Data;
import java.io.Serializable;
@Data
public class CustomerInfoModel implements Serializable {
private Long customerSubId;
//客户表ID(集团客户存在多个子客户)
private Long customerId;
private String customerSubName;
private String uniqId;
//状态 0 无效 1 有效
private Integer state;
//手机号
private String customerMobile;
private String customerName;
//客户类型 1.个人客户 2.集团客户
private Integer customerType;
//主账户
private Long mainAccountId;
//虚拟账户
private Long virtualAccountId;
public CustomerInfoModel(Long customerSubId, Long customerId, String customerSubName, String uniqId, Integer state, String customerMobile, String customerName, Integer customerType, Long mainAccountId, Long virtualAccountId) {
this.customerSubId = customerSubId;
this.customerId = customerId;
this.customerSubName = customerSubName;
this.uniqId = uniqId;
this.state = state;
this.customerMobile = customerMobile;
this.customerName = customerName;
this.customerType = customerType;
this.mainAccountId = mainAccountId;
this.virtualAccountId = virtualAccountId;
}
public CustomerInfoModel() {
}

最后

以上就是不安衬衫为你收集整理的注解@Data JavaBean省去get set 方法的全部内容,希望文章能够帮你解决注解@Data JavaBean省去get set 方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部