|
|
@@ -0,0 +1,24 @@
|
|
|
+package com.xjrsoft.module.internship.dto;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDate;
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+* @title: 实习计划管理表
|
|
|
+* @Author dzx
|
|
|
+* @Date: 2025-06-23
|
|
|
+* @Version 1.0
|
|
|
+*/
|
|
|
+@Data
|
|
|
+public class UpdateInternshipPlanManageDto extends AddInternshipPlanManageDto {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty("主键id")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+}
|