7 lines
217 B
C#
7 lines
217 B
C#
namespace Application.Domain;
|
|
|
|
public interface IUnitUserAttrService
|
|
{
|
|
Task<unit_user_blood> GetUserBlood(string userId);
|
|
Task<bool> UpdateUserBlood(string userId, int op, int count, bool mustUp = false);
|
|
} |