移除学分相关实体类
This commit is contained in:
@@ -1,25 +0,0 @@
|
|||||||
package com.innovation.platform.entity;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学分申诉实体
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
@TableName("credit_appeal")
|
|
||||||
public class CreditAppeal extends BaseEntity {
|
|
||||||
private Long creditDetailId;
|
|
||||||
private Long userId;
|
|
||||||
private String appealReason;
|
|
||||||
private String appealEvidence;
|
|
||||||
private Integer status;
|
|
||||||
private Long handlerId;
|
|
||||||
private LocalDateTime handleTime;
|
|
||||||
private String handleResult;
|
|
||||||
private BigDecimal adjustedCredit;
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
package com.innovation.platform.entity;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学分明细实体
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
@TableName("credit_detail")
|
|
||||||
public class CreditDetail extends BaseEntity {
|
|
||||||
private Long userId;
|
|
||||||
private Long projectId;
|
|
||||||
private Long achievementId;
|
|
||||||
private Integer creditSource;
|
|
||||||
private BigDecimal credit;
|
|
||||||
private BigDecimal coefficient;
|
|
||||||
private Long ruleId;
|
|
||||||
private String remark;
|
|
||||||
private Integer status;
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
package com.innovation.platform.entity;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学分规则实体
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
@TableName("credit_rule")
|
|
||||||
public class CreditRule extends BaseEntity {
|
|
||||||
private String ruleName;
|
|
||||||
private Integer ruleType;
|
|
||||||
private Integer targetType;
|
|
||||||
private Integer targetLevel;
|
|
||||||
private BigDecimal baseCredit;
|
|
||||||
private BigDecimal leaderCoefficient;
|
|
||||||
private BigDecimal memberCoefficient;
|
|
||||||
private String description;
|
|
||||||
private Integer status;
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user