仓库管理_客户信息:init

This commit is contained in:
qianhao.xu
2024-03-17 16:05:28 +08:00
parent d193f3fc52
commit 741ec8ade4
8 changed files with 359 additions and 33 deletions

View File

@@ -0,0 +1,25 @@
using System;
using ZR.Model;
using ZR.Model.Dto;
using System.Collections.Generic;
using ZR.Model.MES.wms;
using ZR.Model.MES.wms.Dto;
namespace ZR.Service.mes.wms.IService
{
/// <summary>
/// 客户信息service接口
/// </summary>
public interface IWmCustomService : IBaseService<WmCustom>
{
PagedInfo<WmCustomDto> GetList(WmCustomQueryDto parm);
WmCustom GetInfo(int Id);
WmCustom AddWmCustom(WmCustom parm);
int UpdateWmCustom(WmCustom parm);
}
}