package com.ruoyi.tms.domain;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import java.util.Date;
|
|
import lombok.Data;
|
|
/**
|
* 装货服务商信息管理对象 tms_loading_service_provider
|
*
|
* @author ruoyi
|
* @date 2025-11-10
|
*/
|
@Data
|
public class TmsLoadingServiceProvider {
|
|
|
/**
|
* 主键ID
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
|
/**
|
* 服务商编码
|
*/
|
@Excel(name = "服务商编码")
|
@TableField("service_code")
|
private String serviceCode;
|
|
|
/**
|
* 服务商全称
|
*/
|
@TableField("service_name")
|
private String serviceName;
|
|
|
/**
|
* 服务商简称
|
*/
|
@Excel(name = "服务商简称")
|
@TableField("service_short_name")
|
private String serviceShortName;
|
|
|
/**
|
* 服务类型
|
*/
|
@Excel(name = "服务类型")
|
@TableField("service_type")
|
private String serviceType;
|
|
|
/**
|
* 地址
|
*/
|
@TableField("address")
|
private String address;
|
|
|
/**
|
* 经营登记证件号码
|
*/
|
@TableField("license_number")
|
private String licenseNumber;
|
|
|
/**
|
* 经营状态
|
*/
|
@Excel(name = "经营状态")
|
@TableField("business_status")
|
private Integer businessStatus;
|
|
|
/**
|
* 联系人姓名
|
*/
|
@Excel(name = "联系人姓名")
|
@TableField("contact_name")
|
private String contactName;
|
|
|
/**
|
* 联系人电话
|
*/
|
@TableField("contact_phone")
|
private String contactPhone;
|
|
|
/**
|
* 联系人邮箱
|
*/
|
@TableField("contact_email")
|
private String contactEmail;
|
|
|
/**
|
* 状态
|
*/
|
@Excel(name = "状态")
|
@TableField("status")
|
private Integer status;
|
|
|
/**
|
* 创建人
|
*/
|
@TableField("create_by")
|
private String createBy;
|
|
|
/**
|
* 创建时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("create_time")
|
private Date createTime;
|
|
|
/**
|
* 更新人
|
*/
|
@TableField("update_by")
|
private String updateBy;
|
|
|
/**
|
* 更新时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("update_time")
|
private Date updateTime;
|
|
|
/**
|
* 备注
|
*/
|
@Excel(name = "备注")
|
@TableField("remark")
|
private String remark;
|
|
|
}
|