店员管理/店员等级/账户管理
This commit is contained in:
@@ -2,15 +2,12 @@ package com.starry.common.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.FieldFill;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.Version;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import javax.persistence.Transient;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author admin
|
||||
@@ -31,7 +28,7 @@ public class BasePageEntity implements Serializable {
|
||||
private Boolean deleted = Boolean.FALSE;
|
||||
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
private Long createdBy;
|
||||
private String createdBy;
|
||||
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
@@ -41,16 +38,7 @@ public class BasePageEntity implements Serializable {
|
||||
private Date updatedTime;
|
||||
|
||||
@TableField(fill = FieldFill.UPDATE)
|
||||
private Long updatedBy;
|
||||
|
||||
@Version
|
||||
private Long version;
|
||||
|
||||
/**
|
||||
* 搜索值
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private String searchValue;
|
||||
private String updatedBy;
|
||||
|
||||
/**
|
||||
* 开始日期
|
||||
@@ -63,11 +51,5 @@ public class BasePageEntity implements Serializable {
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private String endTime;
|
||||
|
||||
/**
|
||||
* 请求参数
|
||||
*/
|
||||
@Transient
|
||||
@TableField(exist = false)
|
||||
private Map<String, Object> params;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user