export-table-pulgin-csharp 1.0.23 → 1.0.24

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/index.js CHANGED
@@ -196,7 +196,7 @@ ${(0, export_table_lib_1.foreach)(fields, f => {
196
196
 
197
197
  #region uid map
198
198
  ${(0, export_table_lib_1.foreach)(fields, f => {
199
- if (f.nameOrigin != f.name) {
199
+ if (f.isUnique) {
200
200
  return `
201
201
  protected static Dictionary<int, ${RowClass}> _tempDictBy${convMemberName(f.name)};
202
202
  public static ${RowClass} GetConfigBy${convMemberName(f.name)}(int ${convMemberName(f.name)})
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "export-table-pulgin-csharp",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -174,7 +174,7 @@ ${foreach(fields, f => {
174
174
 
175
175
  #region uid map
176
176
  ${foreach(fields, f => {
177
- if (f.nameOrigin != f.name) {
177
+ if (f.isUnique) {
178
178
  return `
179
179
  protected static Dictionary<int, ${RowClass}> _tempDictBy${convMemberName(f.name)};
180
180
  public static ${RowClass} GetConfigBy${convMemberName(f.name)}(int ${convMemberName(f.name)})