feat(共享账号): 增加会员套餐和到期时间字段- 在 TzSharedAccount、TzSharedAccountBo 和 TzSharedAccountVo 类中添加了会员套餐 (thali) 和套餐到期时间 (thaliTime) 字段- 为 TzSharedAccountVo 中的新增字段添加了 ExcelProperty 注解,以便于数据导出

This commit is contained in:
清晨
2025-05-06 10:56:35 +08:00
parent 767c29eedd
commit 56ab84283b
3 changed files with 32 additions and 0 deletions

View File

@@ -84,5 +84,15 @@ public class TzSharedAccount extends BaseEntity {
*/ */
private String remark; private String remark;
/**
* 会员套餐
*/
private String thali;
/**
* 套餐到期时间
*/
private Date thaliTime;
} }

View File

@@ -86,5 +86,15 @@ public class TzSharedAccountBo extends BaseEntity {
*/ */
private String remark; private String remark;
/**
* 会员套餐
*/
private String thali;
/**
* 套餐到期时间
*/
private Date thaliTime;
} }

View File

@@ -108,5 +108,17 @@ public class TzSharedAccountVo implements Serializable {
@ExcelProperty(value = "备注") @ExcelProperty(value = "备注")
private String remark; private String remark;
/**
* 会员套餐
*/
@ExcelProperty(value = "会员套餐")
private String thali;
/**
* 套餐到期时间
*/
@ExcelProperty(value = "套餐到期时间")
private Date thaliTime;
} }