34 lines
803 B
C#
34 lines
803 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using WMS.Model.Base;
|
|||
|
|
using System.Data;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.IBase
|
|||
|
|
{
|
|||
|
|
public interface IUserArea
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
void AddUserAreaData(UserAreaModel model);
|
|||
|
|
|
|||
|
|
void UpdateUserAreaData(UserAreaModel model);
|
|||
|
|
|
|||
|
|
void DeleteUserAreaData(UserAreaModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获得数据
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="model"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetUserAreaData(UserAreaModel model);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 通过工种获得隶属该工种下的所有人员
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="mo"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetWorkKindUserData(UserAreaModel mo);
|
|||
|
|
}
|
|||
|
|
}
|