|
@@ -24,7 +24,7 @@ var JsonRpcUtils_1 = require("../JsonRpcUtils");
|
|
|
var CreateUserRequest = /** @class */ (function (_super) {
|
|
|
__extends(CreateUserRequest, _super);
|
|
|
function CreateUserRequest(_a) {
|
|
|
- var code = _a.code, userName = _a.userName, phone = _a.phone, cardNo = _a.cardNo, realName = _a.realName, headImageToken = _a.headImageToken, organizationCode = _a.organizationCode, teamCode = _a.teamCode, roleCode = _a.roleCode, secretPassword = _a.secretPassword, rankName = _a.rankName, signature = _a.signature, ultrasoundCode = _a.ultrasoundCode, ecgCode = _a.ecgCode, token = _a.token;
|
|
|
+ var code = _a.code, userName = _a.userName, phone = _a.phone, cardNo = _a.cardNo, realName = _a.realName, headImageToken = _a.headImageToken, organizationCode = _a.organizationCode, teamCode = _a.teamCode, roleCode = _a.roleCode, secretPassword = _a.secretPassword, rankName = _a.rankName, signature = _a.signature, ultrasoundCode = _a.ultrasoundCode, ecgCode = _a.ecgCode, facturyUserCode = _a.facturyUserCode, token = _a.token;
|
|
|
var _this = _super.call(this, {
|
|
|
token: token,
|
|
|
}) || this;
|
|
@@ -42,6 +42,7 @@ var CreateUserRequest = /** @class */ (function (_super) {
|
|
|
_this.signature = signature;
|
|
|
_this.ultrasoundCode = ultrasoundCode;
|
|
|
_this.ecgCode = ecgCode;
|
|
|
+ _this.facturyUserCode = facturyUserCode;
|
|
|
_this.token = token;
|
|
|
return _this;
|
|
|
}
|
|
@@ -60,6 +61,7 @@ var CreateUserRequest = /** @class */ (function (_super) {
|
|
|
signature: map['Signature'],
|
|
|
ultrasoundCode: map['UltrasoundCode'],
|
|
|
ecgCode: map['EcgCode'],
|
|
|
+ facturyUserCode: map['FacturyUserCode'],
|
|
|
token: map['Token'],
|
|
|
});
|
|
|
};
|
|
@@ -93,6 +95,8 @@ var CreateUserRequest = /** @class */ (function (_super) {
|
|
|
map['UltrasoundCode'] = this.ultrasoundCode;
|
|
|
if (this.ecgCode != null)
|
|
|
map['EcgCode'] = this.ecgCode;
|
|
|
+ if (this.facturyUserCode != null)
|
|
|
+ map['FacturyUserCode'] = this.facturyUserCode;
|
|
|
return map;
|
|
|
};
|
|
|
return CreateUserRequest;
|
|
@@ -389,7 +393,7 @@ exports.GetUserListRequest = GetUserListRequest;
|
|
|
var UpdateUserRequest = /** @class */ (function (_super) {
|
|
|
__extends(UpdateUserRequest, _super);
|
|
|
function UpdateUserRequest(_a) {
|
|
|
- var code = _a.code, phone = _a.phone, cardNo = _a.cardNo, realName = _a.realName, headImageToken = _a.headImageToken, organizationCode = _a.organizationCode, teamCode = _a.teamCode, roleCode = _a.roleCode, rankName = _a.rankName, signature = _a.signature, ultrasoundCode = _a.ultrasoundCode, ecgCode = _a.ecgCode, token = _a.token;
|
|
|
+ var code = _a.code, phone = _a.phone, cardNo = _a.cardNo, realName = _a.realName, headImageToken = _a.headImageToken, organizationCode = _a.organizationCode, teamCode = _a.teamCode, roleCode = _a.roleCode, rankName = _a.rankName, signature = _a.signature, ultrasoundCode = _a.ultrasoundCode, ecgCode = _a.ecgCode, facturyUserCode = _a.facturyUserCode, token = _a.token;
|
|
|
var _this = _super.call(this, {
|
|
|
token: token,
|
|
|
}) || this;
|
|
@@ -405,6 +409,7 @@ var UpdateUserRequest = /** @class */ (function (_super) {
|
|
|
_this.signature = signature;
|
|
|
_this.ultrasoundCode = ultrasoundCode;
|
|
|
_this.ecgCode = ecgCode;
|
|
|
+ _this.facturyUserCode = facturyUserCode;
|
|
|
_this.token = token;
|
|
|
return _this;
|
|
|
}
|
|
@@ -421,6 +426,7 @@ var UpdateUserRequest = /** @class */ (function (_super) {
|
|
|
signature: map['Signature'],
|
|
|
ultrasoundCode: map['UltrasoundCode'],
|
|
|
ecgCode: map['EcgCode'],
|
|
|
+ facturyUserCode: map['FacturyUserCode'],
|
|
|
token: map['Token'],
|
|
|
});
|
|
|
};
|
|
@@ -450,6 +456,8 @@ var UpdateUserRequest = /** @class */ (function (_super) {
|
|
|
map['UltrasoundCode'] = this.ultrasoundCode;
|
|
|
if (this.ecgCode != null)
|
|
|
map['EcgCode'] = this.ecgCode;
|
|
|
+ if (this.facturyUserCode != null)
|
|
|
+ map['FacturyUserCode'] = this.facturyUserCode;
|
|
|
return map;
|
|
|
};
|
|
|
return UpdateUserRequest;
|