42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using HandyControl.Controls;
|
|
using MiniExcelLibs;
|
|
using Ping9719.WpfEx.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using SqlSugar;
|
|
using HandyControl.Data;
|
|
using System.Windows;
|
|
using Newtonsoft.Json.Linq;
|
|
using 智能仓储WCS管理系统.Views.Controls;
|
|
using WCS.Model.ApiModel.User;
|
|
using 智能仓储WCS管理系统.Api;
|
|
using WCS.Model;
|
|
using WCS.Model.ApiModel;
|
|
using System.Windows.Controls;
|
|
using WCS.Model.ApiModel.InterfaceRecord;
|
|
using WCS.BLL.DbModels;
|
|
using WCS.Model.ApiModel.MatBaseInfo;
|
|
|
|
namespace 智能仓储WCS管理系统.ViewModel
|
|
{
|
|
public class MatBaseInfoAddOrUpdateViewModel : BindableBase
|
|
{
|
|
private bool isEnable;
|
|
public bool IsEnable
|
|
{
|
|
get { return isEnable; }
|
|
set
|
|
{
|
|
SetProperty(ref isEnable, value);
|
|
}
|
|
}
|
|
}
|
|
}
|