Mall.java 1.6 KB
package vion.model.monitor;

import com.baomidou.mybatisplus.annotation.*;
import io.github.linpeilie.annotations.AutoMapper;
import io.github.linpeilie.annotations.AutoMappers;
import lombok.Getter;
import lombok.Setter;
import vion.dto.monitor.MallDTO;
import vion.vo.monitor.MallVO;

import java.time.LocalDateTime;

/**
 * 项目mall信息
 */
@Getter
@Setter
@TableName(value = "m_mall")
@AutoMappers({
        @AutoMapper(target = MallVO.class),
        @AutoMapper(target = MallDTO.class),
})
public class Mall {
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;

    /**
     * agent uid
     */
    @TableField(value = "agent_uid")
    private String agentUid;

    /**
     * agent类型 1:store,2:mall
     */
    @TableField(value = "agent_type")
    private Short agentType;

    /**
     * 所属集团uid
     */
    @TableField(value = "account_uid")
    private String accountUid;

    /**
     * mall unid
     */
    @TableField(value = "uid")
    private String uid;

    /**
     * mall名称
     */
    @TableField(value = "\"name\"", condition = SqlCondition.LIKE)
    private String name;

    /**
     * mall营业状态
     */
    @TableField(value = "\"status\"")
    private Boolean status;

    /**
     * 时区
     */
    @TableField(value = "time_zone")
    private String timeZone;

    /**
     * 备注
     */
    @TableField(value = "remark")
    private String remark;

    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private LocalDateTime createTime;

    @TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
}