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.
31 lines
677 B
31 lines
677 B
package com.spring.modules.code.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.util.Date;
|
|
|
|
@TableName("drawing_list")
|
|
@Data
|
|
public class CodeDrawing {
|
|
|
|
private String site;
|
|
|
|
private String drawingNo;
|
|
|
|
private String drawingDesc;
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date createDate;
|
|
|
|
private String creator;
|
|
|
|
private String seqFlag;
|
|
|
|
private String drawingNoNew;
|
|
|
|
private String remark;
|
|
}
|