Commit 26f4a3f8 by jianshuqin

申请费用计划单 增加所属账期和所属项目

parent 76ba7487
......@@ -173,6 +173,13 @@ public class CostPlanDomain implements Serializable {
@ApiModelProperty("客户编号")
private String customerNum;
@ApiModelProperty("所属项目")
private String project;
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty("所属账期")
private Date projectDate;
public CostPlanDto castToDto() {
StatusMapper statusMapper = SpringContextUtil.getBean(StatusMapper.class);
......
......@@ -228,6 +228,14 @@ public class CostDomain implements Serializable {
@ApiModelProperty("客户编号")
private String customerNum;
@ApiModelProperty("所属项目")
private String project;
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty("所属账期")
private Date projectDate;
@TableField(typeHandler = JacksonTypeHandler.class)
@ApiModelProperty("附加字段")
private List<CostAttach> attach;
......
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