You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
571 B
C#
24 lines
571 B
C#
using Admin.Core.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.IService
|
|
{
|
|
/// <summary>
|
|
/// 电检数据记录
|
|
/// </summary>
|
|
public interface IRecordElectricalinspectionService
|
|
{
|
|
|
|
/// <summary>
|
|
/// 保存电检数据
|
|
/// </summary>
|
|
/// <param name="electricalinspection"></param>
|
|
/// <returns></returns>
|
|
bool InsertRecordElectricalinspection(RecordElectricalinspection electricalinspection);
|
|
}
|
|
}
|