mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-25 07:46:40 +08:00
员工奖惩添加金额字段
This commit is contained in:
@@ -35,7 +35,10 @@ public class CreateEmployeeRecordDto extends OrgCommonDto {
|
||||
@Comment("记录内容")
|
||||
private String recordContent;
|
||||
|
||||
|
||||
@Comment("分数")
|
||||
@Comment("奖惩分数")
|
||||
private Double score;
|
||||
|
||||
|
||||
@Comment("奖惩金额")
|
||||
private Double money;
|
||||
}
|
||||
|
||||
@@ -33,9 +33,12 @@ public class EmployeeRecordDto extends OrgCommonDto {
|
||||
@Comment("记录内容")
|
||||
private String recordContent;
|
||||
|
||||
|
||||
@Comment("分数")
|
||||
@Comment("奖惩分数")
|
||||
private Double score;
|
||||
|
||||
|
||||
@Comment("奖惩金额")
|
||||
private Double money;
|
||||
private String archiveStatus;
|
||||
|
||||
private String archiveStatusName;
|
||||
|
||||
@@ -36,6 +36,10 @@ public class UpdateEmployeeRecordDto extends OrgCommonDto {
|
||||
private String recordContent;
|
||||
|
||||
|
||||
@Comment("分数")
|
||||
@Comment("奖惩分数")
|
||||
private Double score;
|
||||
|
||||
|
||||
@Comment("奖惩金额")
|
||||
private Double money;
|
||||
}
|
||||
|
||||
@@ -42,10 +42,14 @@ public class EmployeeRecordEntity extends OrgCommonEntity {
|
||||
private String recordContent;
|
||||
|
||||
|
||||
@Comment("分数")
|
||||
@Comment("奖惩分数")
|
||||
private Double score;
|
||||
|
||||
|
||||
@Comment("奖惩金额")
|
||||
private Double money;
|
||||
|
||||
|
||||
@Comment("归档状态")
|
||||
@ColumnDefault("'0'")
|
||||
private String archiveStatus = "0";
|
||||
|
||||
Reference in New Issue
Block a user