Commit 317c5b0c authored by 徐俊's avatar 徐俊

xujun

parent 1e35da49
package com.yiboshi.science.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yiboshi.science.base.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
/**
* 人才专家分配明细表
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("com_talent_assign")
@ApiModel(description = "人才专家分配明细表")
public class ComTalentAssign extends BaseEntity {
/** 专家Id */
@ApiModelProperty(value = "专家Id", position = 1)
@Length(max=36, message = "专家Id不能大于36")
private String expertId;
/** 人才Id */
@ApiModelProperty(value = "人才Id", position = 2)
@Length(max=36, message = "人才Id不能大于36")
private String talentId;
/** 分配年度 */
@ApiModelProperty(value = "分配年度", position = 3)
private Integer assignYear;
/** 备注 */
@ApiModelProperty(value = "备注", position =10)
@Length(max=65535, message = "备注不能大于65535")
private String remark;
/** 审核状态(0 未评审 1 保存 2 已提交) */
@ApiModelProperty(value = "审核状态(0 未评审 1 保存 2 已提交)", position = 11)
private Integer auditState;
}
package com.yiboshi.science.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yiboshi.science.base.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@TableName("com_talent_group")
@ApiModel(description = "人才分组表")
public class ComTalentGroup extends BaseEntity {
@ApiModelProperty(value = "人才分组名称", position = 1)
@Length(max=60, message = "人才分组名称不能大于60")
private String groupName;
@ApiModelProperty(value = "人才分组年度", position = 2)
private Integer groupYear;
@ApiModelProperty(value = "人才分组排序", position = 2)
private Integer displayOrder;
@ApiModelProperty(value = "人才分组中的项目数", position = 4)
private Integer talentCount;
@ApiModelProperty(value = "人才分组中的专家数", position = 5)
private Integer expertCount;
/** 分配状态 0未分配 1已分配 */
@ApiModelProperty(value = "分配状态", position = 6)
private Integer assignState;
/** 备注 */
@ApiModelProperty(value = "备注", position = 7)
@Length(max=200, message = "备注不能大于200")
private String remark;
}
package com.yiboshi.science.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yiboshi.science.base.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@TableName("com_talent_group_assign")
@ApiModel(description = "人才分组分配表")
public class ComTalentGroupAssign extends BaseEntity {
/** 人才分组Id */
@ApiModelProperty(value = "人才分组Id", position = 1)
@Length(max=36, message = "人才分组Id不能大于36")
private String groupId;
/** 专家Id */
@ApiModelProperty(value = "专家Id", position = 2)
@Length(max=36, message = "专家Id不能大于36")
private String expertId;
/** 备注 */
@ApiModelProperty(value = "备注", position = 3)
@Length(max=500, message = "备注不能大于500")
private String remark;
}
package com.yiboshi.science.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yiboshi.science.base.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@TableName("com_talent_group_detail")
@ApiModel(description = "人才分组明细表")
public class ComTalentGroupDetail extends BaseEntity {
/** 人才分组Id */
@ApiModelProperty(value = "人才分组Id", position = 1)
@Length(max=36, message = "人才分组Id不能大于36")
private String groupId;
/** 人才Id */
@ApiModelProperty(value = "人才Id", position = 2)
@Length(max=36, message = "人才Id不能大于36")
private String talentId;
/** 备注 */
@ApiModelProperty(value = "备注", position = 3)
@Length(max=500, message = "备注不能大于500")
private String remark;
}
package com.yiboshi.science.param.dto;
import com.yiboshi.science.base.BaseDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "人才专家分配明细表DTO")
public class ComTalentAssignDTO extends BaseDTO {
/** 专家Id */
@ApiModelProperty(value = "专家Id", position = 1)
@Length(max=36, message = "专家Id不能大于36")
private String expertId;
/** 人才Id */
@ApiModelProperty(value = "人才Id", position = 2)
@Length(max=36, message = "人才Id不能大于36")
private String talentId;
/** 分配年度 */
@ApiModelProperty(value = "分配年度", position = 3)
private Integer assignYear;
/** 备注 */
@ApiModelProperty(value = "备注", position =10)
@Length(max=65535, message = "备注不能大于65535")
private String remark;
/** 审核状态(0 未评审 1 保存 2 已提交) */
@ApiModelProperty(value = "审核状态(0 未评审 1 保存 2 已提交)", position = 11)
private Integer auditState;
}
package com.yiboshi.science.param.dto;
import com.yiboshi.science.base.BaseDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "人才分组分配表DTO")
public class ComTalentGroupAssignDTO extends BaseDTO {
/** 人才分组Id */
@ApiModelProperty(value = "人才分组Id", position = 1)
@Length(max=36, message = "人才分组Id不能大于36")
private String groupId;
/** 专家Id */
@ApiModelProperty(value = "专家Id", position = 2)
@Length(max=36, message = "专家Id不能大于36")
private String expertId;
/** 备注 */
@ApiModelProperty(value = "备注", position = 3)
@Length(max=500, message = "备注不能大于500")
private String remark;
}
package com.yiboshi.science.param.dto;
import com.yiboshi.science.base.BaseDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "人才分组表DTO")
public class ComTalentGroupDTO extends BaseDTO {
@ApiModelProperty(value = "人才分组名称", position = 1)
@Length(max=60, message = "人才分组名称不能大于60")
private String groupName;
@ApiModelProperty(value = "人才分组年度", position = 2)
private Integer groupYear;
@ApiModelProperty(value = "人才分组排序", position = 2)
private Integer displayOrder;
@ApiModelProperty(value = "人才分组中的项目数", position = 4)
private Integer talentCount;
@ApiModelProperty(value = "人才分组中的专家数", position = 5)
private Integer expertCount;
/** 分配状态 0未分配 1已分配 */
@ApiModelProperty(value = "分配状态", position = 6)
private Integer assignState;
/** 备注 */
@ApiModelProperty(value = "备注", position = 7)
@Length(max=200, message = "备注不能大于200")
private String remark;
}
package com.yiboshi.science.param.dto;
import com.yiboshi.science.base.BaseDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "人才分组明细表DTO")
public class ComTalentGroupDetailDTO extends BaseDTO {
/** 人才分组Id */
@ApiModelProperty(value = "人才分组Id", position = 1)
@Length(max=36, message = "人才分组Id不能大于36")
private String groupId;
/** 人才Id */
@ApiModelProperty(value = "人才Id", position = 2)
@Length(max=36, message = "人才Id不能大于36")
private String talentId;
/** 备注 */
@ApiModelProperty(value = "备注", position = 3)
@Length(max=500, message = "备注不能大于500")
private String remark;
}
package com.yiboshi.science.param.query;
import com.yiboshi.science.base.PaginationVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(description = "人才专家分配明细表VO")
public class ComTalentAssignQueryVO extends PaginationVO {
/** 专家Id */
@ApiModelProperty(value = "专家Id", position = 1)
@Length(max=36, message = "专家Id不能大于36")
private String expertId;
/** 人才Id */
@ApiModelProperty(value = "人才Id", position = 2)
@Length(max=36, message = "人才Id不能大于36")
private String talentId;
/** 分配年度 */
@ApiModelProperty(value = "分配年度", position = 3)
private Integer assignYear;
/** 备注 */
@ApiModelProperty(value = "备注", position =10)
@Length(max=65535, message = "备注不能大于65535")
private String remark;
/** 审核状态(0 未评审 1 保存 2 已提交) */
@ApiModelProperty(value = "审核状态(0 未评审 1 保存 2 已提交)", position = 11)
private Integer auditState;
}
package com.yiboshi.science.param.query;
import com.yiboshi.science.base.PaginationVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(description = "人才分组分配表VO")
public class ComTalentGroupAssignQueryVO extends PaginationVO {
/** 人才分组Id */
@ApiModelProperty(value = "人才分组Id", position = 1)
@Length(max=36, message = "人才分组Id不能大于36")
private String groupId;
/** 专家Id */
@ApiModelProperty(value = "专家Id", position = 2)
@Length(max=36, message = "专家Id不能大于36")
private String expertId;
/** 备注 */
@ApiModelProperty(value = "备注", position = 3)
@Length(max=500, message = "备注不能大于500")
private String remark;
}
package com.yiboshi.science.param.query;
import com.yiboshi.science.base.PaginationVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(description = "人才分组明细表VO")
public class ComTalentGroupDetailQueryVO extends PaginationVO {
/** 人才分组Id */
@ApiModelProperty(value = "人才分组Id", position = 1)
@Length(max=36, message = "人才分组Id不能大于36")
private String groupId;
/** 人才Id */
@ApiModelProperty(value = "人才Id", position = 2)
@Length(max=36, message = "人才Id不能大于36")
private String talentId;
/** 备注 */
@ApiModelProperty(value = "备注", position = 3)
@Length(max=500, message = "备注不能大于500")
private String remark;
}
package com.yiboshi.science.param.query;
import com.yiboshi.science.base.PaginationVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(description = "人才分组表VO")
public class ComTalentGroupQueryVO extends PaginationVO {
@ApiModelProperty(value = "人才分组名称", position = 1)
@Length(max=60, message = "人才分组名称不能大于60")
private String groupName;
@ApiModelProperty(value = "人才分组年度", position = 2)
private Integer groupYear;
@ApiModelProperty(value = "人才分组排序", position = 2)
private Integer displayOrder;
@ApiModelProperty(value = "人才分组中的项目数", position = 4)
private Integer talentCount;
@ApiModelProperty(value = "人才分组中的专家数", position = 5)
private Integer expertCount;
/** 分配状态 0未分配 1已分配 */
@ApiModelProperty(value = "分配状态", position = 6)
private Integer assignState;
/** 备注 */
@ApiModelProperty(value = "备注", position = 7)
@Length(max=200, message = "备注不能大于200")
private String remark;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment