|
|
@ -5,6 +5,8 @@ import com.baomidou.mybatisplus.annotation.TableField; |
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
|
|
import io.swagger.annotations.ApiModel; |
|
|
import io.swagger.annotations.ApiModel; |
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
import lombok.*; |
|
|
import lombok.*; |
|
|
@ -32,8 +34,9 @@ public class ProfitVerifyOrder implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* id |
|
|
* id |
|
|
*/ |
|
|
*/ |
|
|
@TableId(value = "id", type = IdType.ASSIGN_ID) |
|
|
|
|
|
@ApiModelProperty(value="id") |
|
|
@ApiModelProperty(value="id") |
|
|
|
|
|
@TableId(value = "id", type = IdType.ASSIGN_ID) |
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class) |
|
|
private Long id; |
|
|
private Long id; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
@ -47,6 +50,7 @@ public class ProfitVerifyOrder implements Serializable { |
|
|
* 创建订单管理员id |
|
|
* 创建订单管理员id |
|
|
*/ |
|
|
*/ |
|
|
@TableField(value = "admin_id") |
|
|
@TableField(value = "admin_id") |
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class) |
|
|
@ApiModelProperty(value="创建订单管理员id") |
|
|
@ApiModelProperty(value="创建订单管理员id") |
|
|
private Long adminId; |
|
|
private Long adminId; |
|
|
|
|
|
|
|
|
@ -67,8 +71,9 @@ public class ProfitVerifyOrder implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* 修改管理员id |
|
|
* 修改管理员id |
|
|
*/ |
|
|
*/ |
|
|
@TableField(value = "update_admin_id") |
|
|
|
|
|
@ApiModelProperty(value="修改管理员id") |
|
|
@ApiModelProperty(value="修改管理员id") |
|
|
|
|
|
@TableField(value = "update_admin_id") |
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class) |
|
|
private Long updateAdminId; |
|
|
private Long updateAdminId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
@ -88,8 +93,9 @@ public class ProfitVerifyOrder implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* 审核管理员id |
|
|
* 审核管理员id |
|
|
*/ |
|
|
*/ |
|
|
@TableField(value = "verify_admin_id") |
|
|
|
|
|
@ApiModelProperty(value="审核管理员id") |
|
|
@ApiModelProperty(value="审核管理员id") |
|
|
|
|
|
@TableField(value = "verify_admin_id") |
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class) |
|
|
private Long verifyAdminId; |
|
|
private Long verifyAdminId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
|