| 123456789101112131415161718192021222324 |
- package com.xjrsoft.module.internship.dto;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @title: 实习计划参与人表
- * @Author dzx
- * @Date: 2025-06-26
- * @Version 1.0
- */
- @Data
- public class UpdateInternshipPlanManageParticipantDto extends AddInternshipPlanManageParticipantDto {
- private static final long serialVersionUID = 1L;
- /**
- * 主键编号
- */
- @ApiModelProperty("主键编号")
- private Long id;
- }
|