From 212f81d79dc966cdf5f73a658a070ca79d69e822 Mon Sep 17 00:00:00 2001 From: wujianwei <wjw@11.com> Date: 星期二, 09 九月 2025 16:40:02 +0800 Subject: [PATCH] 新增接口 --- service/src/main/java/com/ruoyi/cwgl/domain/SmartLockerApplication.java | 131 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 131 insertions(+), 0 deletions(-) diff --git a/service/src/main/java/com/ruoyi/cwgl/domain/SmartLockerApplication.java b/service/src/main/java/com/ruoyi/cwgl/domain/SmartLockerApplication.java new file mode 100644 index 0000000..27aeac8 --- /dev/null +++ b/service/src/main/java/com/ruoyi/cwgl/domain/SmartLockerApplication.java @@ -0,0 +1,131 @@ +package com.ruoyi.cwgl.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.ruoyi.common.annotation.Excel; +import com.baomidou.mybatisplus.annotation.TableField; +import java.util.Date; +import lombok.Data; +/** + * 鏅鸿兘鏌滅墿鍝佺敵棰嗙鐞嗗璞� smart_locker_application + * + * @author ruoyi + * @date 2025-09-09 + */ +@Data +public class SmartLockerApplication{ + + + /** ID */ + @TableField("id") + private Integer id; + + + /** 鎸囦护绫诲瀷(0:寮�闂ㄦ寚浠�;1:娴佽浆鎸囦护) */ + @Excel(name = "鎸囦护绫诲瀷(0:寮�闂ㄦ寚浠�;1:娴佽浆鎸囦护)") + + @TableField("command_type") + private Integer commandType; + + + /** 鐢抽浜虹紪鐮� */ + @Excel(name = "鐢抽浜虹紪鐮�") + + @TableField("applicant_code") + private String applicantCode; + + + /** 鐢抽浜哄鍚� */ + @Excel(name = "鐢抽浜哄鍚�") + + @TableField("applicant_name") + private String applicantName; + + + /** 棰嗗彇鐗╁搧绫诲瀷(0:杞﹂挜鍖�;1:鏂囦欢;2:鍗扮珷;3:鍏朵粬) */ + @Excel(name = "棰嗗彇鐗╁搧绫诲瀷(0:杞﹂挜鍖�;1:鏂囦欢;2:鍗扮珷;3:鍏朵粬)") + + @TableField("item_type") + private Integer itemType; + + + /** 鐗╁搧鍚嶇О锛堝綋棰嗗彇鐗╁搧绫诲瀷鏄溅閽ュ寵鐨勬椂鍊欙紝濉啓杞︾墝锛� */ + @Excel(name = "鐗╁搧鍚嶇О", readConverterExp = "褰�=棰嗗彇鐗╁搧绫诲瀷鏄溅閽ュ寵鐨勬椂鍊欙紝濉啓杞︾墝") + + @TableField("item_name") + private String itemName; + + + /** 鏅鸿兘鏌滅紪鍙烽粯璁ゆ帴椹崇珯鏅鸿兘閽ュ寵鏌� */ + @Excel(name = "鏅鸿兘鏌滅紪鍙烽粯璁ゆ帴椹崇珯鏅鸿兘閽ュ寵鏌�") + + @TableField("locker_no") + private String lockerNo; + + + /** 鏅鸿兘鏌滄牸鍙e彿 */ + @Excel(name = "鏅鸿兘鏌滄牸鍙e彿") + + @TableField("locker_port") + private Integer lockerPort; + + + /** 鐘舵��(0:姝e父;1:浣滃簾;2:棰嗗彇) */ + @Excel(name = "鐘舵��(0:姝e父;1:浣滃簾;2:棰嗗彇)") + + @TableField("status") + private Integer status; + + + /** 浣滃簾鏃堕棿 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "浣滃簾鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") + @TableField("cancel_time") + private Date cancelTime; + + + /** 棰嗗彇鏃堕棿 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "棰嗗彇鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") + + @TableField("receive_time") + private Date receiveTime; + + + /** 鍒涘缓鏃堕棿 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @TableField("create_time") + private Date createTime; + + + /** 鏇存柊鏃堕棿 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @TableField("update_time") + private Date updateTime; + + + /** 澶囨敞 */ + @Excel(name = "澶囨敞") + + @TableField("remark") + private String remark; + + + /** 鍒涘缓浜� */ + @TableField("create_by") + private String createBy; + + + /** 鏇存柊浜� */ + @TableField("update_by") + private String updateBy; + + + /** 鍒犻櫎鏍囪(0:姝e父;1:鍒犻櫎) */ + @Excel(name = "鍒犻櫎鏍囪(0:姝e父;1:鍒犻櫎)") + + @TableField("deleted") + private Integer deleted; + + +} -- Gitblit v1.8.0