Skip to content

Commit 3dca033

Browse files
committed
Update ScreenChestCT DetectRibFracture.
1 parent 15279dd commit 3dca033

11 files changed

+192
-129
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-04-06 Version: 0.0.6
2+
- Update ScreenChestCT DetectRibFracture.
3+
14
2021-04-01 Version: 7.22.0
25
- Add data service api, including ListAnalyticsData.
36
- Update file uploading api, including GenerateFileUploadURL.

aliyun-net-sdk-imageprocess/Imageprocess/Model/V20200320/DetectHipKeypointXRayRequest.cs

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -40,78 +40,78 @@ public DetectHipKeypointXRayRequest()
4040
Method = MethodType.POST;
4141
}
4242

43+
private string orgName;
44+
45+
private string tracerId;
46+
4347
private string dataFormat;
4448

4549
private string orgId;
4650

47-
private string orgName;
48-
4951
private string imageUrl;
5052

51-
private string tracerId;
52-
53-
public string DataFormat
53+
public string OrgName
5454
{
5555
get
5656
{
57-
return dataFormat;
57+
return orgName;
5858
}
5959
set
6060
{
61-
dataFormat = value;
62-
DictionaryUtil.Add(BodyParameters, "DataFormat", value);
61+
orgName = value;
62+
DictionaryUtil.Add(BodyParameters, "OrgName", value);
6363
}
6464
}
6565

66-
public string OrgId
66+
public string TracerId
6767
{
6868
get
6969
{
70-
return orgId;
70+
return tracerId;
7171
}
7272
set
7373
{
74-
orgId = value;
75-
DictionaryUtil.Add(BodyParameters, "OrgId", value);
74+
tracerId = value;
75+
DictionaryUtil.Add(BodyParameters, "TracerId", value);
7676
}
7777
}
7878

79-
public string OrgName
79+
public string DataFormat
8080
{
8181
get
8282
{
83-
return orgName;
83+
return dataFormat;
8484
}
8585
set
8686
{
87-
orgName = value;
88-
DictionaryUtil.Add(BodyParameters, "OrgName", value);
87+
dataFormat = value;
88+
DictionaryUtil.Add(BodyParameters, "DataFormat", value);
8989
}
9090
}
9191

92-
public string ImageUrl
92+
public string OrgId
9393
{
9494
get
9595
{
96-
return imageUrl;
96+
return orgId;
9797
}
9898
set
9999
{
100-
imageUrl = value;
101-
DictionaryUtil.Add(BodyParameters, "ImageUrl", value);
100+
orgId = value;
101+
DictionaryUtil.Add(BodyParameters, "OrgId", value);
102102
}
103103
}
104104

105-
public string TracerId
105+
public string ImageUrl
106106
{
107107
get
108108
{
109-
return tracerId;
109+
return imageUrl;
110110
}
111111
set
112112
{
113-
tracerId = value;
114-
DictionaryUtil.Add(BodyParameters, "TracerId", value);
113+
imageUrl = value;
114+
DictionaryUtil.Add(BodyParameters, "ImageUrl", value);
115115
}
116116
}
117117

aliyun-net-sdk-imageprocess/Imageprocess/Model/V20200320/DetectHipKeypointXRayResponse.cs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -56,35 +56,35 @@ public DetectHipKeypointXRay_Data Data
5656
public class DetectHipKeypointXRay_Data
5757
{
5858

59-
private string imageUrl;
60-
6159
private string orgId;
6260

61+
private string imageUrl;
62+
6363
private string orgName;
6464

6565
private List<DetectHipKeypointXRay_KeyPointsItem> keyPoints;
6666

67-
public string ImageUrl
67+
public string OrgId
6868
{
6969
get
7070
{
71-
return imageUrl;
71+
return orgId;
7272
}
7373
set
7474
{
75-
imageUrl = value;
75+
orgId = value;
7676
}
7777
}
7878

79-
public string OrgId
79+
public string ImageUrl
8080
{
8181
get
8282
{
83-
return orgId;
83+
return imageUrl;
8484
}
8585
set
8686
{
87-
orgId = value;
87+
imageUrl = value;
8888
}
8989
}
9090

@@ -160,31 +160,31 @@ public DetectHipKeypointXRay_Tag Tag
160160
public class DetectHipKeypointXRay_Tag
161161
{
162162

163-
private string direction;
164-
165163
private string label;
166164

167-
public string Direction
165+
private string direction;
166+
167+
public string Label
168168
{
169169
get
170170
{
171-
return direction;
171+
return label;
172172
}
173173
set
174174
{
175-
direction = value;
175+
label = value;
176176
}
177177
}
178178

179-
public string Label
179+
public string Direction
180180
{
181181
get
182182
{
183-
return label;
183+
return direction;
184184
}
185185
set
186186
{
187-
label = value;
187+
direction = value;
188188
}
189189
}
190190
}

aliyun-net-sdk-imageprocess/Imageprocess/Model/V20200320/DetectLungNoduleRequest.cs

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -40,39 +40,52 @@ public DetectLungNoduleRequest()
4040
Method = MethodType.POST;
4141
}
4242

43-
private string dataFormat;
44-
4543
private float? threshold;
4644

45+
private string orgName;
46+
47+
private string dataFormat;
48+
4749
private List<URLList> uRLLists = new List<URLList>(){ };
4850

4951
private string orgId;
5052

51-
private string orgName;
53+
public float? Threshold
54+
{
55+
get
56+
{
57+
return threshold;
58+
}
59+
set
60+
{
61+
threshold = value;
62+
DictionaryUtil.Add(BodyParameters, "Threshold", value.ToString());
63+
}
64+
}
5265

53-
public string DataFormat
66+
public string OrgName
5467
{
5568
get
5669
{
57-
return dataFormat;
70+
return orgName;
5871
}
5972
set
6073
{
61-
dataFormat = value;
62-
DictionaryUtil.Add(BodyParameters, "DataFormat", value);
74+
orgName = value;
75+
DictionaryUtil.Add(BodyParameters, "OrgName", value);
6376
}
6477
}
6578

66-
public float? Threshold
79+
public string DataFormat
6780
{
6881
get
6982
{
70-
return threshold;
83+
return dataFormat;
7184
}
7285
set
7386
{
74-
threshold = value;
75-
DictionaryUtil.Add(BodyParameters, "Threshold", value.ToString());
87+
dataFormat = value;
88+
DictionaryUtil.Add(BodyParameters, "DataFormat", value);
7689
}
7790
}
7891

@@ -106,19 +119,6 @@ public string OrgId
106119
}
107120
}
108121

109-
public string OrgName
110-
{
111-
get
112-
{
113-
return orgName;
114-
}
115-
set
116-
{
117-
orgName = value;
118-
DictionaryUtil.Add(BodyParameters, "OrgName", value);
119-
}
120-
}
121-
122122
public class URLList
123123
{
124124

aliyun-net-sdk-imageprocess/Imageprocess/Model/V20200320/DetectRibFractureRequest.cs

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,41 @@ public DetectRibFractureRequest()
4040
Method = MethodType.POST;
4141
}
4242

43+
private string orgName;
44+
45+
private string sourceType;
46+
4347
private string dataFormat;
4448

4549
private List<URLList> uRLLists = new List<URLList>(){ };
4650

4751
private string orgId;
4852

49-
private string orgName;
53+
public string OrgName
54+
{
55+
get
56+
{
57+
return orgName;
58+
}
59+
set
60+
{
61+
orgName = value;
62+
DictionaryUtil.Add(BodyParameters, "OrgName", value);
63+
}
64+
}
5065

51-
private string sourceType;
66+
public string SourceType
67+
{
68+
get
69+
{
70+
return sourceType;
71+
}
72+
set
73+
{
74+
sourceType = value;
75+
DictionaryUtil.Add(BodyParameters, "SourceType", value);
76+
}
77+
}
5278

5379
public string DataFormat
5480
{
@@ -93,32 +119,6 @@ public string OrgId
93119
}
94120
}
95121

96-
public string OrgName
97-
{
98-
get
99-
{
100-
return orgName;
101-
}
102-
set
103-
{
104-
orgName = value;
105-
DictionaryUtil.Add(BodyParameters, "OrgName", value);
106-
}
107-
}
108-
109-
public string SourceType
110-
{
111-
get
112-
{
113-
return sourceType;
114-
}
115-
set
116-
{
117-
sourceType = value;
118-
DictionaryUtil.Add(BodyParameters, "SourceType", value);
119-
}
120-
}
121-
122122
public class URLList
123123
{
124124

0 commit comments

Comments
 (0)