You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
930 B
33 lines
930 B
package com.spring.modules.Tooling.data;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.spring.modules.base.entity.PlmProjectToolApplyHeader;
|
|
import lombok.Data;
|
|
import org.apache.ibatis.type.Alias;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.util.Date;
|
|
@Data
|
|
@Alias("PlmProjectToolApplyHeaderData")
|
|
public class PlmProjectToolApplyHeaderData extends PlmProjectToolApplyHeader {
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
|
private Date startDate;
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
|
private Date endDate;
|
|
|
|
private String userName;
|
|
private String menuId;
|
|
private String orderRef1;
|
|
private String bu;
|
|
private String departmentDesc;
|
|
|
|
private String quoterName;
|
|
|
|
private String tpName;
|
|
|
|
private String purchaserName;
|
|
}
|