username@email.com
2023-12-11 72e4a4d81cb1b9776ffb7287e0c5ed67592eda8b
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
32
33
34
35
36
37
38
39
40
using DTO;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using zhengcaioa.Models;
 
namespace zhengcaioa.IService
{
    public interface IUserService { 
        
        string GetName();
        PltUser login(string user_sn,string password);
 
 
        ResultEntity<PltUser> changePassword(string oldPwd, string newPwd,string User_id);
 
 
        ResultEntity savePltUser(PltUserDTO pltUserDTO);
 
        PltUserDTO GetPltUserEntity(string id);
 
        ResultDataEntity<PltUserDTO> SearchByPaging(PltUserDTOSearch searchEntity);
 
        ResultEntity ModifyStatus(string id, string userid);
 
        List<PltUserDTO> GetList(string DeptId = null ,string IsYwjl = null);
 
 
        List<PltUserDTO> GetListjisuankaoqin(DateTime dateminkaoqin, DateTime datemaxkaoqin);
 
        ResultEntity savePltUserFenpeiDate(DateTime? FenpeiDate, string userId);
 
        ResultEntity saveCustomerYwjl(CustomerYwjl DTO);
 
 
        List<CustomerYwjl> GetListCustomerYwjl(string CustomerId);
 
    }
}