Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
1b87f215f9
|
@ -19,7 +19,7 @@ public class TbFuseResourceDTO {
|
|||
@ApiModelProperty(value = "融合服务id")
|
||||
private Long fuseId;
|
||||
@ApiModelProperty(value = "资源id")
|
||||
private Long resourceId;
|
||||
private String resourceId;
|
||||
@ApiModelProperty(value = "资源挂载顺序")
|
||||
private String sequence;
|
||||
@ApiModelProperty(value = "资源")
|
||||
|
|
|
@ -27,7 +27,7 @@ public class TbFuseResourceEntity {
|
|||
/**
|
||||
* 资源id
|
||||
*/
|
||||
private Long resourceId;
|
||||
private String resourceId;
|
||||
/**
|
||||
* 顺序
|
||||
*/
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE `tb_fuse_resource` MODIFY COLUMN `resource_id` longtext NOT NULL COMMENT '资源id';
|
Loading…
Reference in New Issue