12345678910111213141516171819 |
- using NXWMS.DataAccess.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Result.Balance
- {
- /// <summary>
- /// 库存改变日志记录结果
- /// </summary>
- public class BalanceChangeLogResult : WMS_LOG_BALANCE_CHANGE_MSG
- {
- public string CreateName { get; set; }
- public string UpdateName { get; set; }
- public string UsedFlagName { get; set; }
- }
- }
|