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.
21 lines
695 B
21 lines
695 B
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Logging;
|
|
using WTA.Application.Identity.Entities.SystemManagement;
|
|
using WTA.Shared.Controllers;
|
|
using WTA.Shared.Data;
|
|
|
|
namespace WTA.Application.Identity.Controllers;
|
|
|
|
public class BJ_SA_DETAILController : GenericController<BJ_SA_DETAIL, BJ_SA_DETAIL, BJ_SA_DETAIL, BJ_SA_DETAIL, BJ_SA_DETAIL, BJ_SA_DETAIL>
|
|
{
|
|
public BJ_SA_DETAILController(ILogger<BJ_SA_DETAIL> logger, IRepository<BJ_SA_DETAIL> repository) : base(logger, repository)
|
|
{
|
|
}
|
|
|
|
[NonAction]
|
|
public override IActionResult Create([FromBody] BJ_SA_DETAIL model)
|
|
{
|
|
return base.Create(model);
|
|
}
|
|
}
|
|
|