日计划管理-客户需求
This commit is contained in:
@ -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;
|
||||
**/
|
||||
}
|
||||
|
||||
@ -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;
|
||||
|
||||
/**
|
||||
|
||||
@ -110,5 +110,11 @@ public class LngPngDemandPageVo {
|
||||
@ExcelProperty("备注")
|
||||
@ApiModelProperty("备注")
|
||||
private String note;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
@ApiModelProperty("创建人id")
|
||||
private Long createUserId;
|
||||
|
||||
}
|
||||
|
||||
@ -74,5 +74,11 @@ public class LngScorePageVo {
|
||||
*/
|
||||
@ApiModelProperty("备注")
|
||||
private String note;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
@ApiModelProperty("创建人id")
|
||||
private Long createUserId;
|
||||
|
||||
}
|
||||
|
||||
@ -75,5 +75,11 @@ public class LngSupplierPageVo {
|
||||
|
||||
@ApiModelProperty("状态(未提交/审批中/已审批/已驳回)")
|
||||
private String approName;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
@ApiModelProperty("创建人id")
|
||||
private Long createUserId;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user