@airpower/web 1.7.7 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +12 -0
- package/dist/model/RootEntity.d.ts +8 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -19763,6 +19763,18 @@ class RootEntity extends RootModel {
|
|
|
19763
19763
|
this.isDisabled = isDisabled;
|
|
19764
19764
|
return this;
|
|
19765
19765
|
}
|
|
19766
|
+
/**
|
|
19767
|
+
* ### 只暴露ID
|
|
19768
|
+
*/
|
|
19769
|
+
exposeOnlyId() {
|
|
19770
|
+
return this.expose("id");
|
|
19771
|
+
}
|
|
19772
|
+
/**
|
|
19773
|
+
* ### 只复制ID
|
|
19774
|
+
*/
|
|
19775
|
+
copyOnlyId() {
|
|
19776
|
+
return this.copy().exposeOnlyId();
|
|
19777
|
+
}
|
|
19766
19778
|
}
|
|
19767
19779
|
__decorateClass([
|
|
19768
19780
|
Field({
|