using DS.Module.Core;
using DS.WMS.Core.Code.Dtos;
using DS.WMS.Core.System.Dtos;
namespace DS.WMS.Core.Code.Interface;
public interface IFormCopyService
{
///
/// 列表
///
///
///
DataResult> GetListByPage(PageRequest request);
///
/// 编辑
///
///
///
DataResult EditFormCopy(CodeFormCopyReq model);
///
/// 获取详情
///
///
///
DataResult GetFormCopyInfo(string id);
}