tijian_jichuang/Code/SOH.BLL.Contract/It_czygl.cs

27 lines
882 B
C#
Raw Normal View History

2025-02-20 11:54:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SOH.Entities;
using SOH.Data;
namespace SOH.BLL
{
public interface It_czygl
{
t_czygl Login(string username, string userpass, int fd);
t_czygl Login2(string username, int fd);
//个人修改密码
OperationResult UpdatePass(string username, string oldpass, string newpass);
List<t_czygl> GetList();
List<t_czygl> GetczyglBybm(short bm);
//超管修改密码
OperationResult SuperUpdatePass(short bm,string newpass,string username);
OperationResult SuperUpdatePass2(short bm, string newpass, string username, byte[] buffByte);
OperationResult SuperUpdateImage1(short bm, string newpass, string username, byte[] buffByte);
//注册功能
OperationResult Insert(t_czygl czy);
}
}