skyouc
6 天以前 b8343b30c7cbaf2db804f6687ebc7f3564e63aef
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/Shipper.java
@@ -3,6 +3,8 @@
import com.baomidou.mybatisplus.annotation.TableLogic;
import java.text.SimpleDateFormat;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@@ -22,8 +24,8 @@
import java.util.Date;
@Data
@ApiModel(value = "货主基础属性")
@TableName("man_shipper")
@ApiModel(value = "Shipper", description = "货主基础信息")
public class Shipper implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -57,7 +59,6 @@
     * 是否删除 1: 是  0: 否  
     */
    @ApiModelProperty(value= "是否删除 1: 是  0: 否  ")
    @TableLogic
    private Integer deleted;
    /**
@@ -77,6 +78,7 @@
     */
    @ApiModelProperty(value= "添加时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date createTime;
    /**
@@ -90,6 +92,7 @@
     */
    @ApiModelProperty(value= "修改时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date updateTime;
    /**