|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.kms.build.domain; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
@ -12,6 +13,8 @@ import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
|
|
|
|
import com.jianwei.common.core.domain.BaseEntity; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
* 进度管理对象 bs_sgc_jsjd_bui_progress |
|
|
|
* |
|
|
@ -26,9 +29,10 @@ public class BsSgcJsjdBuiProgress extends BaseEntity |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
/** 月度 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM",timezone="GMT+8") |
|
|
|
@Excel(name = "月度") |
|
|
|
@ApiModelProperty("月度") |
|
|
|
private String monthly; |
|
|
|
private Date monthly; |
|
|
|
|
|
|
|
/** 月度完成工作量 */ |
|
|
|
@Excel(name = "月度完成工作量") |
|
|
|