whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
src/main/java/com/fgkj/dto/Batt_maint_process.java
@@ -1,8 +1,11 @@
package com.fgkj.dto;
import org.apache.ibatis.type.Alias;
import java.io.Serializable;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
@Alias("Batt_maint_process")
public class Batt_maint_process implements Serializable{
   
   private Integer num;
@@ -10,6 +13,7 @@
   private Integer usr_id;
   private String uname;
   private String work_caption;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
   private Date work_caption_time;
   
   public Batt_maint_process() {
@@ -47,10 +51,10 @@
      this.work_caption_time = work_caption_time;
   }
   
   public String getUname() {
   public String getuName() {
      return uname;
   }
   public void setUname(String uname) {
   public void setuName(String uname) {
      this.uname = uname;
   }
   @Override