六厂财务系统离线功能完善
This commit is contained in:
+58
@@ -0,0 +1,58 @@
|
||||
package org.jeecg.emp.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class StUserBalanceVo {
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private String id;
|
||||
/**
|
||||
* 姓名
|
||||
*/
|
||||
private String realname;
|
||||
/**
|
||||
* 卡号
|
||||
*/
|
||||
private String cardCode;
|
||||
/**
|
||||
* 卡状态
|
||||
*/
|
||||
private String cardCodeStatus;
|
||||
/**
|
||||
* 卡状态
|
||||
*/
|
||||
private String cardCodeStatusName;
|
||||
/**
|
||||
* 电话
|
||||
*/
|
||||
private String phone;
|
||||
/**
|
||||
* 工号
|
||||
*/
|
||||
private String workNo;
|
||||
/**
|
||||
* 身份证号
|
||||
*/
|
||||
private String cardNo;
|
||||
/**
|
||||
* 部门id
|
||||
*/
|
||||
private String departIds;
|
||||
/**
|
||||
* 用户类型 0正式 1非正式 2家庭成员
|
||||
*/
|
||||
private String userType;
|
||||
/**
|
||||
* 食堂id
|
||||
*/
|
||||
private String canteenId;
|
||||
/**
|
||||
* 账户余额
|
||||
*/
|
||||
private BigDecimal balance;
|
||||
|
||||
}
|
||||
+4
@@ -9,8 +9,10 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import lombok.Data;
|
||||
import org.jeecg.common.system.base.entity.JeecgEntity;
|
||||
import org.jeecg.restaurant.entity.SlBaseDinnerTime;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 扣费规则
|
||||
@@ -66,4 +68,6 @@ public class StClientMemberLevelDeductRuleVo extends JeecgEntity implements Seri
|
||||
|
||||
@Schema(title = "是否支持透支消费(0:不支持,1:支持)")
|
||||
private Integer isOverdraftDine;
|
||||
|
||||
private List<SlBaseDinnerTime> dinnerTimes;
|
||||
}
|
||||
|
||||
+9
@@ -34,4 +34,13 @@ public class StRfidVo {
|
||||
|
||||
//本次扣费金额(后端根据规则计算)
|
||||
private BigDecimal spendMoney;
|
||||
/**
|
||||
* 二次扣费标记 1 是; 0 否
|
||||
*/
|
||||
private Integer secondChargeFlag;
|
||||
|
||||
/**
|
||||
* 自定义扣费标记 1 是 ; 0 否
|
||||
*/
|
||||
private Integer isCustom;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user