update:对账消息推送,军保账单统计,退款数据统计

This commit is contained in:
Yuan
2025-10-20 14:39:29 +08:00
parent 9fb2ea9cb4
commit ff5bad9967
35 changed files with 3649 additions and 100 deletions

View File

@@ -0,0 +1,36 @@
package com.saye.hospitalgd.model;
import lombok.Data;
/**
* @author thuang
* @version 1.0
* @description: 财务人员实体类
* @date 2024/12/19 18:00
*/
@Data
public class FinanceUser {
private String id; // 主键ID
private String name; // 姓名
private String wechatName; // 微信名
private String phone; // 手机号
private String openId; // 微信OpenID
private String isActive; // 启用状态(1:启用 0:禁用)
private String createTime; // 创建时间
private String modifyTime; // 修改时间
private String remark; // 备注
}