工资卡
This commit is contained in:
parent
5b1a998dc1
commit
09f1a27145
|
|
@ -32,7 +32,13 @@ public class BmWorkerWageCardController extends BaseController {
|
|||
private BmWorkerWageCardService service;
|
||||
|
||||
|
||||
@RequiresPermissionsOrInnerAuth(innerAuth = @InnerAuth(isUser = false), requiresPermissions = @RequiresPermissions("system:wageCard:list"))
|
||||
/**
|
||||
* 查询列表
|
||||
* @param o
|
||||
* @return
|
||||
* , requiresPermissions = @RequiresPermissions("system:wageCard:list")
|
||||
*/
|
||||
@RequiresPermissionsOrInnerAuth(innerAuth = @InnerAuth(isUser = false))
|
||||
@GetMapping("/list")
|
||||
@SysLog(title = "工资卡管理", businessType = OperaType.QUERY, logType = 0, module = "施工人员->红绿灯管理->工资卡管理", details = "查询工资卡列表")
|
||||
public TableDataInfo list(BmWorkerWageCard o) {
|
||||
|
|
|
|||
|
|
@ -6,6 +6,11 @@ import java.util.List;
|
|||
|
||||
public interface BmWorkerWageCardService {
|
||||
|
||||
/**
|
||||
* 修改工资卡
|
||||
* @param record
|
||||
* @return
|
||||
*/
|
||||
int updateByPrimaryKey(BmWorkerWageCard record);
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue