api加解密,金额字段类型
This commit is contained in:
@ -9,6 +9,7 @@ import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
@ -59,7 +60,7 @@ public class FbsProjectTask implements Serializable {
|
||||
/** 任务金额 */
|
||||
@Excel(name = "任务金额")
|
||||
@ApiModelProperty("任务金额")
|
||||
private Integer taskAmount;
|
||||
private BigDecimal taskAmount;
|
||||
|
||||
/** 用工数量 */
|
||||
@Excel(name = "用工数量")
|
||||
|
||||
@ -46,7 +46,7 @@ public class AppTaskDetailVO {
|
||||
|
||||
/** 任务金额 */
|
||||
@ApiModelProperty("任务金额")
|
||||
private Integer taskAmount;
|
||||
private BigDecimal taskAmount;
|
||||
|
||||
/** 用工数量 */
|
||||
@ApiModelProperty("用工数量")
|
||||
|
||||
@ -26,6 +26,6 @@ public class AppTaskDetailWageVO {
|
||||
private BgtWageApplicationListVO wageApplication;
|
||||
|
||||
@ApiModelProperty("任务金额")
|
||||
private Integer taskAmount;
|
||||
private BigDecimal taskAmount;
|
||||
|
||||
}
|
||||
|
||||
@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
@ -41,7 +42,7 @@ public class AppTaskVO {
|
||||
private String taskDescribe;
|
||||
/** 任务金额 */
|
||||
@ApiModelProperty("任务金额")
|
||||
private Integer taskAmount;
|
||||
private BigDecimal taskAmount;
|
||||
/** 用工数量 */
|
||||
@ApiModelProperty("用工数量")
|
||||
private Integer taskStaffNum;
|
||||
|
||||
Reference in New Issue
Block a user