This commit is contained in:
“wanyongkang”
2022-05-07 11:36:07 +08:00
parent 35814d3436
commit 45b2b5176a
8 changed files with 87 additions and 8 deletions

View File

@@ -82,5 +82,7 @@ namespace Hncore.Pass.BaseInfo.Models
public string ManagerName { get; set; }
public string id_code { get; set; }
public int is_verify { get; set; }
public int is_agent { get; set; }
public int parent_id { get; set; }
}
}

View File

@@ -35,5 +35,6 @@ namespace Hncore.Pass.Vpn.Request.Product
public string Channel { get; set; }
public string Remark { get; set; }
public string phone { get; set; }
}
}

View File

@@ -338,7 +338,8 @@ FROM product_order where {where} GROUP BY Channel,ProductName order by Channel,
PayChannel = request.PayChannel,
Channel = request.Channel,
IsAutoRefund = productEntity.AutoRefund,
agent_id = userEntity.agent_id
agent_id = userEntity.agent_id,
Remark = request.phone
};
if (request.OrderType == OrderType.New || request.OrderType == OrderType.AgainBuy)
{
@@ -640,7 +641,8 @@ FROM product_order where {where} GROUP BY Channel,ProductName order by Channel,
ChargeStatus = AccountChargeStatus.Normal,
UserId = order.UserId,
UserCode = order.UserName,
agent_id = order.agent_id
agent_id = order.agent_id,
UserPhone = order.Remark
};
accountEntitys.Add(accountEntity);
});