|
@@ -1,85 +0,0 @@
|
|
|
-package org.jeecg.modules.api.okki.site.dto;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
-import lombok.Data;
|
|
|
-import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-@Data
|
|
|
-public class CreateSiteDto implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**主键*/
|
|
|
- @TableId(type = IdType.ASSIGN_ID)
|
|
|
- @ApiModelProperty(value = "主键")
|
|
|
- private String id;
|
|
|
- /**创建人*/
|
|
|
- @ApiModelProperty(value = "创建人")
|
|
|
- private String createBy;
|
|
|
- /**创建日期*/
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
- @ApiModelProperty(value = "创建日期")
|
|
|
- private Date createTime;
|
|
|
- /**更新人*/
|
|
|
- @ApiModelProperty(value = "更新人")
|
|
|
- private String updateBy;
|
|
|
- /**更新日期*/
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
- @ApiModelProperty(value = "更新日期")
|
|
|
- private Date updateTime;
|
|
|
- /**站点id*/
|
|
|
- @Excel(name = "站点id", width = 15)
|
|
|
- @ApiModelProperty(value = "站点id")
|
|
|
- private Integer siteId;
|
|
|
- /**公司名称*/
|
|
|
- @Excel(name = "公司名称", width = 15)
|
|
|
- @ApiModelProperty(value = "公司名称")
|
|
|
- private String companyName;
|
|
|
- /**初始化的域名*/
|
|
|
- @Excel(name = "初始化的域名", width = 15)
|
|
|
- @ApiModelProperty(value = "初始化的域名")
|
|
|
- private String domain;
|
|
|
- /**联系方式*/
|
|
|
- @Excel(name = "联系方式", width = 15)
|
|
|
- @ApiModelProperty(value = "联系方式")
|
|
|
- private String tel;
|
|
|
- /**联系人*/
|
|
|
- @Excel(name = "联系人", width = 15)
|
|
|
- @ApiModelProperty(value = "联系人")
|
|
|
- private String contact;
|
|
|
- /**邮箱*/
|
|
|
- @Excel(name = "邮箱", width = 15)
|
|
|
- @ApiModelProperty(value = "邮箱")
|
|
|
- private String email;
|
|
|
- /**公司名英⽂简称*/
|
|
|
- @Excel(name = "公司名英⽂简称", width = 15)
|
|
|
- @ApiModelProperty(value = "公司名英⽂简称")
|
|
|
- private String enname;
|
|
|
- /**套餐名*/
|
|
|
- @Excel(name = "套餐名", width = 15)
|
|
|
- @ApiModelProperty(value = "套餐名")
|
|
|
- private String tcName;
|
|
|
- /**套餐周期,单位⽉*/
|
|
|
- @Excel(name = "套餐周期,单位⽉", width = 15)
|
|
|
- @ApiModelProperty(value = "套餐周期,单位⽉")
|
|
|
- private Integer tcPeriod;
|
|
|
- /**站点选择的⼩语种语⾔*/
|
|
|
- @Excel(name = "站点选择的⼩语种语⾔", width = 15)
|
|
|
- @ApiModelProperty(value = "站点选择的⼩语种语⾔")
|
|
|
- private String tcLanguage;
|
|
|
- /**备注*/
|
|
|
- @Excel(name = "备注", width = 15)
|
|
|
- @ApiModelProperty(value = "备注")
|
|
|
- private String remark;
|
|
|
-
|
|
|
- private String sign;
|
|
|
-}
|