This commit is contained in:
777
2025-12-09 11:27:23 +08:00
parent c5bd376851
commit e36a5a9ddd
9 changed files with 141 additions and 67 deletions

View File

@@ -15,7 +15,7 @@ public class AddPointAdminDto implements Serializable {
/**
* 调整的金额
*/
private Long point;
private Long changePoints;
/**
* 是否参与分销
*/

View File

@@ -0,0 +1,23 @@
package com.ruoyi.cai.dto;
import lombok.Data;
@Data
public class ChangePointsAdminDto {
/**
* 员工ID
*/
private String usercode;
/**
* 调整的金额
*/
private Long changePoints;
/**
* 是否参与分销
*/
private boolean distribution;
private String remark;
}