From 10df7e29b51d6a2efacc83d870856f57d97a9b66 Mon Sep 17 00:00:00 2001 From: yanghui <2536613402@qq.com> Date: 星期一, 24 十月 2022 13:48:24 +0800 Subject: [PATCH] #feat 修改别名 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngCarDO.java | 42 +++++++++++++++++++++--------------------- 1 files changed, 21 insertions(+), 21 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngCarDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngCarDO.java index c4e7b52..ebeb1bc 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngCarDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngCarDO.java @@ -1,12 +1,12 @@ package com.panzhihua.service_community.model.dos; -import com.baomidou.mybatisplus.annotation.*; -import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - import java.io.Serializable; import java.util.Date; + +import com.baomidou.mybatisplus.annotation.*; +import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; + +import lombok.Data; /** * @description: 车辆管理 @@ -17,51 +17,51 @@ @TableName(value = "com_mng_car") public class ComMngCarDO implements Serializable { - /**主键*/ - @TableId(type = IdType.AUTO) + /** 主键 */ + @TableId(type = IdType.ASSIGN_ID) private Long id; - /**社区ID*/ + /** 社区ID */ private Long communityId; - /**小区名称*/ + /** 小区名称 */ private String areaName; - /**小区ID*/ + /** 小区ID */ private Long areaId; - /**车主姓名*/ + /** 车主姓名 */ private String userName; - /**身份证号*/ + /** 身份证号 */ @EncryptDecryptField private String cardNo; - /**车主用户ID*/ + /** 车主用户ID */ private Long userId; - /**详细住址*/ + /** 详细住址 */ private String address; - /**车主手机号码*/ + /** 车主手机号码 */ private String mobile; - /**车牌号*/ + /** 车牌号 */ private String plateNum; - /**车辆品牌*/ + /** 车辆品牌 */ private String brand; - /**车身颜色*/ + /** 车身颜色 */ private String color; - /**创建时间*/ + /** 创建时间 */ @TableField(fill = FieldFill.INSERT) private Date createAt; - /**创建人*/ + /** 创建人 */ private Long createBy; - /**数据来源:1-小程序 2-后台录入*/ + /** 数据来源:1-小程序 2-后台录入 */ private Integer source; } -- Gitblit v1.7.1