add
zongzhibin
2024-11-23 de4e5b2eafe108d20bc0fc4f215fdda135ed04c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
using Admin.NET.Application.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Admin.NET.Application.CommonHelper;
public class LogActionHelper
{
 
 
    /// <summary>
    /// 创建操作日志
    /// </summary>
    /// <param name="dbId"></param>
    /// <param name="actionTitle"></param>
    /// <param name="pDAReceivingActionType"></param>
    /// <returns></returns>
    public static WmsLogAction CreateWmsLogAction(long dbId, string actionTitle, string remark = "")
    {
 
 
        WmsLogAction wareActionLog = new WmsLogAction()
        {
            DbId = dbId,
            Title = actionTitle,
            Remarks = remark
        };
        return wareActionLog;
    }
}