1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using DTO;
using System;
using System.Collections.Generic;
using System.Text;
using zhengcaioa.Models;
 
namespace IServices
{
    public interface ILiaotianService
    {
        ResultEntity saveLiaotian(LiaotianDTO liaotian);
 
        LiaotianDTO GetLiaotianEntity(string id);
 
        ResultDataEntity<LiaotianDTO> SearchByPaging(LiaotianDTOSearch searchEntity);
 
        ResultEntity ModifyStatus(string id, string userid);
 
        List<SysCodeDtl> GetSYScode(string code_table, string code_field);
 
 
        List<LiaotianDTO> SearchForPrint(LiaotianDTOSearch searchEntity);
 
        ResultEntity saveLiaotianShoucang(LiaotianShoucangDTO liaotian);
 
        ResultEntity ModifyStatusLiaotianShoucang(string id, string userid);
 
        List<LiaotianShoucangDTO> getListLiaotianShoucang(string userId,string LiaotianId);
 
    }
}