ruoyi-api/ruoyi-api-account/src/main/java/com/ruoyi/account/api/model/TInvoiceInformation.java
@@ -67,9 +67,9 @@ @TableField("bank_account") private String bankAccount; @ApiModelProperty(value = "设置默认(0=否,1=是)") @TableField("default") private Integer default; // @ApiModelProperty(value = "设置默认(0=否,1=是)") // @TableField("default") // private Integer default; @ApiModelProperty(value = "添加时间") @TableField("create_time") ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TActivity.java
@@ -58,14 +58,7 @@ @TableField("status") private Integer status; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; } ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TAdvertising.java
@@ -62,14 +62,7 @@ @TableField("status") private Integer status; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; @ApiModelProperty(value = "广告状态 1未开始 2已开始 3已结束") @TableField(exist = false) ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TCompany.java
@@ -42,14 +42,7 @@ @TableField("remark") private String remark; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; @ApiModelProperty(value = "人数") @TableField(exist = false) private Long userCount; ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TCoupon.java
@@ -107,14 +107,6 @@ @TableField("status") private Integer status; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; } ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TEnterpriseUserApplication.java
@@ -54,14 +54,7 @@ @TableField("remark") private String remark; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; } ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TEvaluationTag.java
@@ -38,14 +38,7 @@ @TableField("type") private Integer type; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; } ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TGoods.java
@@ -99,14 +99,7 @@ @TableField("status") private Integer status; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; } ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TInvoiceType.java
@@ -54,14 +54,7 @@ @TableField("added_service_tariff") private Double addedServiceTariff; @ApiModelProperty(value = "删除状态(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; } ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TNotice.java
@@ -45,14 +45,6 @@ @TableField("end_time") private LocalDateTime endTime; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; } ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TUserTag.java
@@ -42,14 +42,7 @@ @TableField("condition") private String condition; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; } ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TVip.java
@@ -134,14 +134,7 @@ @TableField("mall_exclusive_price") private Integer mallExclusivePrice; @ApiModelProperty(value = "添加时间") @TableField("create_time") private LocalDateTime createTime; @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") @TableLogic private Integer delFlag; } ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/SysDictDataMapper.java
New file @@ -0,0 +1,17 @@ package com.ruoyi.other.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.other.api.domain.SysDictData; /** * <p> * Mapper 接口 * </p> * * @author 无关风月 * @since 2024-08-06 */ public interface SysDictDataMapper extends BaseMapper<SysDictData> { } ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/SysDictTypeMapper.java
New file @@ -0,0 +1,17 @@ package com.ruoyi.other.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.other.api.domain.SysDictType; /** * <p> * Mapper 接口 * </p> * * @author 无关风月 * @since 2024-08-06 */ public interface SysDictTypeMapper extends BaseMapper<SysDictType> { } ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/SysNoticeMapper.java
New file @@ -0,0 +1,16 @@ package com.ruoyi.other.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.other.api.domain.SysNotice; /** * <p> * Mapper 接口 * </p> * * @author 无关风月 * @since 2024-08-06 */ public interface SysNoticeMapper extends BaseMapper<SysNotice> { } ruoyi-service/ruoyi-other/src/main/resources/mapper/TAdvertisingMapper.xml
@@ -24,7 +24,6 @@ <select id="pageList" resultType="com.ruoyi.other.api.domain.TAdvertising"> select * from t_advertising <where> <if test="req.name != null and req.name != ''"> AND `name` LIKE concat('%',#{req.name}, '%') </if>