3.19优化
This commit is contained in:
@ -12,4 +12,5 @@ import lombok.experimental.Accessors;
|
||||
@Accessors(chain = true)
|
||||
@ApiModel("请假·历史请假记录请求对象")
|
||||
public class WgzAppLeaveHistoryListPageReq extends PageReq {
|
||||
|
||||
}
|
||||
|
||||
@ -70,8 +70,8 @@ public class WgzAppRealNameAuthenticationReq implements Serializable {
|
||||
@NotBlank(message = "银行卡号不能为空")
|
||||
private String cardNo;
|
||||
|
||||
@ApiModelProperty("附件实体数据")
|
||||
private List<Annex> annex;
|
||||
// @ApiModelProperty("附件实体数据")
|
||||
// private List<Annex> annex;
|
||||
|
||||
@ApiModelProperty("工种,多个逗号分隔")
|
||||
private String typeOfWork;
|
||||
|
||||
@ -0,0 +1,20 @@
|
||||
package com.ruoyi.wgz.bo.req;
|
||||
|
||||
import com.ruoyi.common.domain.Annex;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
@ApiModel("附件新增请求对象")
|
||||
public class WgzAppUserDeleteAttachmentAdd implements Serializable {
|
||||
@ApiModelProperty("附件实体数据")
|
||||
private List<Annex> annex;
|
||||
}
|
||||
@ -0,0 +1,20 @@
|
||||
package com.ruoyi.wgz.bo.res;
|
||||
|
||||
import com.ruoyi.wgz.bo.rests.WgzAppUserAllRecruitmentTwo;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
@ApiModel("项目进行中返回对象")
|
||||
public class WgzAppUserAllRecruitmentRes implements Serializable {
|
||||
@ApiModelProperty("列表")
|
||||
private List<WgzAppUserAllRecruitmentTwo> list;
|
||||
}
|
||||
@ -0,0 +1,24 @@
|
||||
package com.ruoyi.wgz.bo.rests;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
@ApiModel("获取当前用户的所有招工信息返回")
|
||||
public class WgzAppUserAllRecruitmentTwo implements Serializable {
|
||||
@ApiModelProperty("主键ID")
|
||||
private Long recruitId;
|
||||
|
||||
@ApiModelProperty("招工名称")
|
||||
private String recruitName;
|
||||
|
||||
@ApiModelProperty("1当前招工 2历史招工")
|
||||
private String type;
|
||||
}
|
||||
Reference in New Issue
Block a user