yanjinhui
2 天以前 8cdcf8cb6fecf101bd7dd1db2e44f0cf5ddc0fd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System.ComponentModel;
using WIDESEA_Core.BaseController;
using WIDESEA_IWMsInfoServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.WMSInfo
{
    [Route("api/[controller]")]
    [ApiController]
    public class TraceabilityCodeController : ApiBaseController<ITraceabilityCodeService, Dt_TraceabilityCode>
    {
        public TraceabilityCodeController(ITraceabilityCodeService service) : base(service)
        {
        }
    }
}