日计划管理-客户需求

This commit is contained in:
2026-01-20 17:53:31 +08:00
parent 2127cd0f47
commit 58df623462
12 changed files with 195 additions and 14 deletions

View File

@ -265,4 +265,17 @@ public class UpdateLngPngDemandDto implements Serializable {
},
caseType = JoinCaseType.FULL, target = UpdateLngPngDemandPurDto.class, type = JoinType.MANY)
private List<UpdateLngPngDemandPurDto> lngPngDemandPurList;
/**
* lngPngApproPur
*/
/**
@ApiModelProperty("lngPngAppro子表")
@LogJoin(name = "lngPngAppro子表",
columns = {
@LogJoinColumn(field = "demandId",relatedField = "id", valueDirection = ValueDirectionType.RIGHT)
},
caseType = JoinCaseType.FULL, target = UpdateLngPngApproPurDto.class, type = JoinType.MANY)
private List<UpdateLngPngApproDto> lngPngApproList;
**/
}

View File

@ -5,6 +5,7 @@ import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.pictc.annotations.datalog.LogAttrField;
import com.pictc.annotations.datalog.LogField;
import com.pictc.annotations.datalog.LogTable;
@ -54,6 +55,7 @@ public class UpdateLngPngMeasureSalesPurDto implements Serializable {
*/
@LogField(name="计划日期",index=3)
@ApiModelProperty("计划日期")
@JsonFormat(pattern = "yyyy-MM-dd")
private LocalDateTime datePlan;
/**
@ -61,6 +63,7 @@ public class UpdateLngPngMeasureSalesPurDto implements Serializable {
*/
@LogField(name="计量日期",index=4)
@ApiModelProperty("计量日期(缺省=计划日期+1)")
@JsonFormat(pattern = "yyyy-MM-dd")
private LocalDateTime dateMea;
/**

View File

@ -110,5 +110,11 @@ public class LngPngDemandPageVo {
@ExcelProperty("备注")
@ApiModelProperty("备注")
private String note;
/**
* 创建人id
*/
@ApiModelProperty("创建人id")
private Long createUserId;
}

View File

@ -74,5 +74,11 @@ public class LngScorePageVo {
*/
@ApiModelProperty("备注")
private String note;
/**
* 创建人id
*/
@ApiModelProperty("创建人id")
private Long createUserId;
}

View File

@ -75,5 +75,11 @@ public class LngSupplierPageVo {
@ApiModelProperty("状态(未提交/审批中/已审批/已驳回)")
private String approName;
/**
* 创建人id
*/
@ApiModelProperty("创建人id")
private Long createUserId;
}