Selaa lähdekoodia

修改供应商及通道字段

杜魏 4 vuotta sitten
vanhempi
commit
b8f7d4bc73

+ 3 - 3
common/fire-dto/src/main/java/com/fire/dto/ChannelInfo.java

@@ -27,12 +27,12 @@ import java.util.Map;
 @TableName("access_channel_info")
 public class ChannelInfo {
 
-    @TableId(value = "channel_id",type = IdType.AUTO)
+    @TableId(value = "channel_id", type = IdType.AUTO)
     @ApiModelProperty("通道id")
     private Long channelId;
 
-    @ApiModelProperty("客户或者供应商的关联id")
-    private Integer relationId;
+    @ApiModelProperty("供应商id")
+    private Integer supplierId;
 
     @ApiModelProperty("通道名称")
     private String channelName;

+ 1 - 1
common/fire-dto/src/main/java/com/fire/dto/ChannelSupplier.java

@@ -23,7 +23,7 @@ public class ChannelSupplier {
 
     @TableId(value = "relation_id", type = IdType.AUTO)
     @ApiModelProperty("供应商id")
-    private Integer relationId;
+    private Integer supplierId;
 
     @ApiModelProperty("供应商名称")
     private String supplierName;