13 lines
245 B
C#
13 lines
245 B
C#
using Service.Interface;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
/// <summary>
|
|
/// 设备台账 服务实现
|
|
/// </summary>
|
|
public class EquipmentService : IEquipmentService
|
|
{
|
|
// TODO: 实现 设备台账 相关方法
|
|
}
|
|
}
|