From e6456d2196b3e57bd06be0fbc74dd3e0fc28fdeb Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 22 七月 2025 19:17:55 +0800 Subject: [PATCH] 代码提交 --- ruoyi-system/src/main/java/com/ruoyi/system/domain/SmsRecords.java | 170 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 170 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/SmsRecords.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/SmsRecords.java new file mode 100644 index 0000000..af4354d --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/SmsRecords.java @@ -0,0 +1,170 @@ +package com.ruoyi.system.domain; + +import java.util.Date; +import java.util.List; + +import com.fasterxml.jackson.annotation.JsonFormat; +import lombok.Data; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 鐭俊璁板綍瀵硅薄 sms_records + * + * @author smartor + * @date 2023-03-06 + */ +@Data +public class SmsRecords extends BaseEntity { + private static final long serialVersionUID = 1L; + + /** + * 璁板綍ID + */ + private Long recordid; + + /** + * 瀛愪换鍔D + */ + private Long subId; + + /** + * + */ + @Excel(name = "鐢ㄦ埛ID") + private String userid; + + /** + * + */ + @Excel(name = "鐢ㄦ埛鍚�") + private String username; + + /** + * + */ + @Excel(name = "鎵嬫満鍙�") + private String phone; + + /** + * 鐭俊缂栧彿 + */ + @Excel(name = "鐭俊缂栧彿") + private String msgno; + + /** + * 鐭俊鍐呭 + */ + @Excel(name = "鐭俊鍐呭") + private String msg; + + /** + * 鏂板鏃堕棿 + */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") + private Date inserttime; + + /** + * 鍙戦�佹椂闂� + */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") + private Date sendtime; + + /** + * 鍙戦�佸け璐ユ鏁� + */ + @Excel(name = "鍙戦�佸け璐ユ鏁�") + private Long sendfailedcount; + + /** + * 缁撴灉鏃堕棿 + */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") + private Date resulttime; + + /** + * 缁撴灉鍐呭 + */ + @Excel(name = "") + private String resultmsg; + + /** + * 鍙戦�佺姸鎬� + */ + @Excel(name = "鍙戦�佺姸鎬�: 0鏈彂閫� 1.宸插彂閫�") + private Long sendstate; + + /** + * + */ + @Excel(name = "") + private Long inserttype; + + /** + * + */ + @Excel(name = "") + private Long insertsystem; + + /** + * + */ + @Excel(name = "") + private String insertmodule; + + /** + * + */ + @Excel(name = "") + private String moduleid; + + /** + * + */ + @Excel(name = "") + private String msgidentify; + + /** + * $column.columnComment + */ + @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") + private Long accountid; + + /** + * 鏈烘瀯ID + */ + @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") + private String orgid; + + private List<String> orgidList; + + /** + * 鍒犻櫎鏍囧織 + */ + private String delFlag; + + /** + * + */ + @Excel(name = "") + private Long isupload; + + /** + * + */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") + private Date uploadTime; + /** + * + */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") + private Date visitTime; + +} -- Gitblit v1.9.3