基础数据代码生成

This commit is contained in:
liss
2025-09-25 10:19:11 +08:00
parent 45d5ce0f3d
commit 44eb76d547
82 changed files with 4674 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
package com.zt.plat.module.base.controller.admin.base.vo;
import lombok.*;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
import com.zt.plat.framework.common.pojo.PageParam;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
import static com.zt.plat.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
@Schema(description = "管理后台 - 账户条款分页 Request VO")
@Data
public class AccountPageReqVO extends PageParam {
@Schema(description = "类型", example = "2")
private String type;
@Schema(description = "户名", example = "赵六")
private String accountName;
@Schema(description = "开户行", example = "2834")
private String bankAccount;
@Schema(description = "户号")
private String accountNumber;
@Schema(description = "税号/社会信用代码")
private String taxNumber;
@Schema(description = "创建时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] createTime;
}

Some files were not shown because too many files have changed in this diff Show More