| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package com.goafanti.common.model;
- import java.util.Date;
- import org.apache.commons.lang3.time.DateFormatUtils;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- public class OrgTechCenter {
- private String id;
- private String uid;
- /**
- * 成立时间
- */
- private Date foundingTime;
- /**
- * 负责人
- */
- private String principal;
- /**
- * 制度目录URL
- */
- private String systemUrl;
- /**
- * 删除标记
- */
- private Integer deletedSign;
- /**
- * 制度目录
- */
- private String systemCatalog;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUid() {
- return uid;
- }
- public void setUid(String uid) {
- this.uid = uid;
- }
- public Date getFoundingTime() {
- return foundingTime;
- }
- public void setFoundingTime(Date foundingTime) {
- this.foundingTime = foundingTime;
- }
- public String getPrincipal() {
- return principal;
- }
- public void setPrincipal(String principal) {
- this.principal = principal;
- }
- public String getSystemUrl() {
- return systemUrl;
- }
- public void setSystemUrl(String systemUrl) {
- this.systemUrl = systemUrl;
- }
-
- @JsonIgnore
- public Integer getDeletedSign() {
- return deletedSign;
- }
- public void setDeletedSign(Integer deletedSign) {
- this.deletedSign = deletedSign;
- }
- public String getSystemCatalog() {
- return systemCatalog;
- }
- public void setSystemCatalog(String systemCatalog) {
- this.systemCatalog = systemCatalog;
- }
-
- public String getFoundingTimeFormattedDate(){
- if (this.foundingTime == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getFoundingTime(), "yyyy-MM-dd");
- }
- }
-
- public void setFoundingTimeFormattedDate(String foundingTimeFormattedDate){
-
- }
- }
|