|
@@ -1,101 +0,0 @@
|
|
|
-package org.jeecg.modules.system.app.entity;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-import java.io.UnsupportedEncodingException;
|
|
|
-import java.util.Date;
|
|
|
-import java.math.BigDecimal;
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
-import org.jeecg.common.constant.ProvinceCityArea;
|
|
|
-import org.jeecg.common.util.SpringContextUtils;
|
|
|
-import lombok.Data;
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
-import org.jeecg.common.aspect.annotation.Dict;
|
|
|
-import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
-import lombok.EqualsAndHashCode;
|
|
|
-import lombok.experimental.Accessors;
|
|
|
-
|
|
|
-/**
|
|
|
- * @Description: 订单人员详细表
|
|
|
- * @Author: jeecg-boot
|
|
|
- * @Date: 2025-07-03
|
|
|
- * @Version: V1.0
|
|
|
- */
|
|
|
-@Data
|
|
|
-@TableName("nm_order_user")
|
|
|
-@Accessors(chain = true)
|
|
|
-@EqualsAndHashCode(callSuper = false)
|
|
|
-@Schema(description="订单人员详细表")
|
|
|
-public class AppOrderUser implements Serializable {
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**id*/
|
|
|
- @TableId(type = IdType.ASSIGN_ID)
|
|
|
- @Schema(description = "id")
|
|
|
- private String id;
|
|
|
- /**部门id*/
|
|
|
- @Excel(name = "部门id", width = 15)
|
|
|
- @Schema(description = "部门id")
|
|
|
- private String orgCode;
|
|
|
- /**租户id*/
|
|
|
- @Excel(name = "租户id", width = 15)
|
|
|
- @Schema(description = "租户id")
|
|
|
- private String tenantId;
|
|
|
- /**订单*/
|
|
|
- @Excel(name = "订单", width = 15)
|
|
|
- @Schema(description = "订单")
|
|
|
- private String orderId;
|
|
|
- /**人员名称*/
|
|
|
- @Excel(name = "人员名称", width = 15)
|
|
|
- @Schema(description = "人员名称")
|
|
|
- private String name;
|
|
|
- /**身份证*/
|
|
|
- @Excel(name = "身份证", width = 15)
|
|
|
- @Schema(description = "身份证")
|
|
|
- private String idNumber;
|
|
|
- /**电话*/
|
|
|
- @Excel(name = "电话", width = 15)
|
|
|
- @Schema(description = "电话")
|
|
|
- private String phone;
|
|
|
- /**保留1*/
|
|
|
- @Excel(name = "保留1", width = 15)
|
|
|
- @Schema(description = "保留1")
|
|
|
- private String reserve1;
|
|
|
- /**保留2*/
|
|
|
- @Excel(name = "保留2", width = 15)
|
|
|
- @Schema(description = "保留2")
|
|
|
- private String reserve2;
|
|
|
- /**乐观锁*/
|
|
|
- @Excel(name = "乐观锁", width = 15)
|
|
|
- @Schema(description = "乐观锁")
|
|
|
- private Integer revision;
|
|
|
- /**创建人;创建人*/
|
|
|
- @Schema(description = "创建人;创建人")
|
|
|
- private String createBy;
|
|
|
- /**创建时间;创建时间*/
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
- @Schema(description = "创建时间;创建时间")
|
|
|
- private Date createTime;
|
|
|
- /**更新人;更新人*/
|
|
|
- @Schema(description = "更新人;更新人")
|
|
|
- private String updateBy;
|
|
|
- /**更新时间;更新时间*/
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
- @Schema(description = "更新时间;更新时间")
|
|
|
- private Date updateTime;
|
|
|
- /**系统状态;状态(0-正常,1-冻结)*/
|
|
|
- @Excel(name = "系统状态;状态(0-正常,1-冻结)", width = 15)
|
|
|
- @Schema(description = "系统状态;状态(0-正常,1-冻结)")
|
|
|
- private Integer status;
|
|
|
- /**删除标志;删除状态(0-正常,1-已删除)*/
|
|
|
- @Excel(name = "删除标志;删除状态(0-正常,1-已删除)", width = 15)
|
|
|
- @Schema(description = "删除标志;删除状态(0-正常,1-已删除)")
|
|
|
- @TableLogic
|
|
|
- private Integer delFlag;
|
|
|
-}
|