1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| namespace WIDESEA_WMSServer.Controllers;
|
| /// <summary>
| /// 系统订单接口
| /// </summary>
| [Route("api/[controller]")]
| [ApiController]
| public class Dt_PaintingOrderInfoController : ApiBaseController<IDt_PaintingOrderInfoService, Dt_PaintingOrderInfo>
| {
| private readonly IHttpContextAccessor _httpContextAccessor;
|
| public Dt_PaintingOrderInfoController(IDt_PaintingOrderInfoService service, IHttpContextAccessor httpContextAccessor) : base(service)
| {
| _httpContextAccessor = httpContextAccessor;
| }
| }
|
|