helongyang
2 天以前 eb85d3f36be0b84b8a9783944e7db70aa4bb1127
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_IStockService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.Stock
{
    /// <summary>
    /// 成品库存历史
    /// </summary>
    [Route("api/ProStockInfoDetail_Hty")]
    [ApiController]
    public class ProStockInfoDetail_HtyController : ApiBaseController<IProStockInfoDetail_HtyService, Dt_ProStockInfoDetail_Hty>
    {
        public ProStockInfoDetail_HtyController(IProStockInfoDetail_HtyService service) : base(service)
        {
        }
    }
}