|
@ -5,7 +5,7 @@ import com.yihu.jw.entity.IntegerIdentityEntity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import javax.xml.crypto.Data;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2019/9/26.
|
|
@ -18,7 +18,7 @@ public class WlyyInspectionPartsDictDO extends IntegerIdentityEntity {
|
|
|
private String name;//部位名称',
|
|
|
private String parentCode;//上级部位名称',
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
private Data createTime;//
|
|
|
private Date createTime;//
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
@ -44,11 +44,11 @@ public class WlyyInspectionPartsDictDO extends IntegerIdentityEntity {
|
|
|
this.parentCode = parentCode;
|
|
|
}
|
|
|
|
|
|
public Data getCreateTime() {
|
|
|
public Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Data createTime) {
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
}
|