You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.5 KiB

using System.Text;
using Autofac;
using HybirdFrameworkCore.Autofac;
8 months ago
using Microsoft.AspNetCore.Mvc;
using Service.Charger.Client;
using Service.System;
8 months ago
6 months ago
namespace WebStarter.Controllers.Test;
6 months ago
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
8 months ago
{
6 months ago
private static readonly string[] Summaries =
8 months ago
{
6 months ago
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
8 months ago
6 months ago
private readonly ILogger<WeatherForecastController> _logger;
8 months ago
6 months ago
private readonly SysUserServices _sysUserServices;
8 months ago
6 months ago
public WeatherForecastController(ILogger<WeatherForecastController> logger, SysUserServices sysUserServices)
{
_logger = logger;
_sysUserServices = sysUserServices;
}
8 months ago
6 months ago
[HttpGet(Name = "GetWeatherForecast")]
public IEnumerable<WeatherForecast> Get()
{
_logger.LogInformation("this is a hello world");
ChargerClient client = AppInfo.Container.Resolve<ChargerClient>();
client.InitBootstrap("127.0.0.1", 9998);
client.BaseConnect();
client.SessionAttr("1", "3");
client.Channel.WriteAndFlushAsync(Encoding.ASCII.GetBytes("ddddddddddd"));
6 months ago
_logger.LogInformation("this is two hello world");
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateTime.Now.AddDays(index),
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
})
.ToArray();
8 months ago
}
}