Преглед на файлове

完善了表名以及table

LiRong преди 1 месец
родител
ревизия
0bce1f4524

+ 1 - 1
leromro-core/src/main/java/com/leromro/core/domain/Address.java

@@ -21,7 +21,7 @@ import com.leromro.common.core.domain.BaseEntity;
 @AllArgsConstructor
 @TableName("l_address")
 @EqualsAndHashCode(callSuper = true)
-@ApiModel(value = "LAddress", description = "受服务地址")
+@ApiModel(value = "Address", description = "受服务地址")
 public class Address extends BaseEntity
 {
     private static final long serialVersionUID = 1L;

+ 1 - 1
leromro-core/src/main/java/com/leromro/core/domain/ClientAccount.java

@@ -23,7 +23,7 @@ import java.math.BigDecimal;
 @AllArgsConstructor
 @TableName("l_client_balance")
 @EqualsAndHashCode(callSuper = true)
-@ApiModel(value = "UserBalance", description = "用户余额")
+@ApiModel(value = "ClientAccount", description = "用户余额")
 public class ClientAccount extends BaseEntity
 {
     private static final long serialVersionUID = 1L;

+ 1 - 1
leromro-core/src/main/java/com/leromro/core/domain/MainOrders.java

@@ -25,7 +25,7 @@ import com.leromro.common.core.domain.BaseEntity;
 @AllArgsConstructor
 @TableName("l_main_orders")
 @EqualsAndHashCode(callSuper = true)
-@ApiModel(value = "mainOrders", description = "主订单")
+@ApiModel(value = "MainOrders", description = "主订单")
 public class MainOrders extends BaseEntity
 {
     private static final long serialVersionUID = 1L;

+ 1 - 1
leromro-core/src/main/java/com/leromro/core/domain/VolunteerAccount.java

@@ -31,7 +31,7 @@ public class VolunteerAccount extends BaseEntity
     @TableId(type = IdType.AUTO)
     @TableField("volunteer_account_id")
     @ApiModelProperty("id")
-    private Long balanceId;
+    private Long volunteerAccountId;
 
     @TableField("volunteer_id")
     @ApiModelProperty("志愿者id")

+ 1 - 1
leromro-core/src/main/java/com/leromro/core/domain/VolunteerInfo.java

@@ -29,7 +29,7 @@ import lombok.experimental.Accessors;
 @EqualsAndHashCode(callSuper = false)
 @Accessors(chain = true)
 @TableName("l_volunteer_info")
-@ApiModel(value="LVolunteerInfo对象", description="志愿者信息表")
+@ApiModel(value="VolunteerInfo", description="志愿者信息表")
 public class VolunteerInfo extends BaseEntity {
 
     private static final long serialVersionUID = 1L;