修改打印数据

This commit is contained in:
韩鹏辉
2024-04-15 15:33:18 +08:00
parent a2432316ea
commit c0f3b445cb
11 changed files with 187 additions and 5 deletions

View File

@@ -28,4 +28,7 @@ public interface ShopUserDutyPayMapper {
List<Map<String,Object>> selectByDutyId(Integer dutyId);
List<Map<String,Object>> selectCetoryBydutyId(Integer dutyId);
}

View File

@@ -1,7 +1,11 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.TbUserInfo;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Component;
@Component
@Mapper
public interface TbUserInfoMapper {
int deleteByPrimaryKey(Integer id);
@@ -14,4 +18,6 @@ public interface TbUserInfoMapper {
int updateByPrimaryKeySelective(TbUserInfo record);
int updateByPrimaryKey(TbUserInfo record);
TbUserInfo selectByCardNo(String cardNo);
}