| | |
| | | public class PakOutDTO { |
| | | private String doc_num; |
| | | private Date create_time; |
| | | private Date update_time; |
| | | private Integer status; |
| | | private String custName; |
| | | |
| | | public String getCreateTime$(){ |
| | | if (Cools.isEmpty(this.create_time)){ |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.create_time); |
| | | } |
| | | |
| | | public String getUpdateTime$(){ |
| | | if (Cools.isEmpty(this.update_time)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.create_time); |
| | | } |
| | | |
| | | public String getStatus$(){ |
| | | if (null == this.status){ return null; } |
| | | switch (this.status){ |