1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package org.jeecg.modules.system.entity;
- import java.io.Serializable;
- import java.util.Date;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.springframework.format.annotation.DateTimeFormat;
- import org.jeecgframework.poi.excel.annotation.Excel;
- /**
- * @Description: 用户代理人设置
- * @Author: jeecg-boot
- * @Date: 2019-04-17
- * @Version: V1.0
- */
- @Data
- @TableName("sys_user_agent")
- public class SysUserAgent implements Serializable {
- private static final long serialVersionUID = 1L;
-
- /**序号*/
- @TableId(type = IdType.ASSIGN_ID)
- private java.lang.String id;
- /**用户名*/
- @Excel(name = "用户名", width = 15)
- private java.lang.String userName;
- /**代理人用户名*/
- @Excel(name = "代理人用户名", width = 15)
- private java.lang.String agentUserName;
- /**代理开始时间*/
- @Excel(name = "代理开始时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- private java.util.Date startTime;
- /**代理结束时间*/
- @Excel(name = "代理结束时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- private java.util.Date endTime;
- /**状态0无效1有效*/
- @Excel(name = "状态0无效1有效", width = 15)
- private java.lang.String status;
- /**创建人名称*/
- @Excel(name = "创建人名称", width = 15)
- private java.lang.String createName;
- /**创建人登录名称*/
- @Excel(name = "创建人登录名称", width = 15)
- private java.lang.String createBy;
- /**创建日期*/
- @Excel(name = "创建日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- private java.util.Date createTime;
- /**更新人名称*/
- @Excel(name = "更新人名称", width = 15)
- private java.lang.String updateName;
- /**更新人登录名称*/
- @Excel(name = "更新人登录名称", width = 15)
- private java.lang.String updateBy;
- /**更新日期*/
- @Excel(name = "更新日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- private java.util.Date updateTime;
- /**所属部门*/
- @Excel(name = "所属部门", width = 15)
- private java.lang.String sysOrgCode;
- /**所属公司*/
- @Excel(name = "所属公司", width = 15)
- private java.lang.String sysCompanyCode;
- }
|