@airpower/web 1.8.0 → 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 +7 -1
- package/dist/model/RootEntity.d.ts +4 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -19767,7 +19767,13 @@ class RootEntity extends RootModel {
|
|
|
19767
19767
|
* ### 只暴露ID
|
|
19768
19768
|
*/
|
|
19769
19769
|
exposeOnlyId() {
|
|
19770
|
-
return
|
|
19770
|
+
return this.expose("id");
|
|
19771
|
+
}
|
|
19772
|
+
/**
|
|
19773
|
+
* ### 只复制ID
|
|
19774
|
+
*/
|
|
19775
|
+
copyOnlyId() {
|
|
19776
|
+
return this.copy().exposeOnlyId();
|
|
19771
19777
|
}
|
|
19772
19778
|
}
|
|
19773
19779
|
__decorateClass([
|