feat 商户

This commit is contained in:
xxm1995
2023-05-15 17:31:02 +08:00
parent 9f537a8739
commit abd909b439
2 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
package cn.bootx.daxpay.core.merchant.entity;
import cn.bootx.mybatis.table.modify.annotation.DbColumn;
import cn.bootx.mybatis.table.modify.annotation.DbTable;
import cn.bootx.platform.common.mybatisplus.base.MpBaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
* 商户
* @author xxm
* @date 2023/5/15
*/
@EqualsAndHashCode(callSuper = true)
@Data
@DbTable(comment = "商户")
@TableName("pay_merchant")
@Accessors(chain = true)
public class MerchantInfo extends MpBaseEntity {
/** 商户号 */
@DbColumn("商户号")
private String mchNo;
/** 商户名称 */
@DbColumn("商户名称")
private String mchName;
/** 商户简称 */
@DbColumn("商户简称")
private String mchShortName;
/** 类型 */
@DbColumn("类型")
private String type;
/** 联系人姓名 */
@DbColumn("联系人姓名")
private String contactName;
/** 联系人手机号 */
@DbColumn("联系人手机号")
private String contactTel;
/** 是否停用 */
@DbColumn("是否停用")
private String deactivate;
/** 商户备注 */
@DbColumn("商户备注")
private String remark;
}

View File

@@ -11,9 +11,16 @@
<include resource="cn/bootx/platform/common/log/logback-console.xml"/>
<include resource="cn/bootx/platform/common/log/logback-log-file.xml"/>
<!-- plumelog Redis方式日志收集 -->
<appender name="plumelog" class="com.plumelog.logback.appender.LiteAppender">
<appName>bootx-platform</appName>
<plumelogHost>127</plumelogHost>
</appender>
<!-- 开发输出级别 -->
<root level="INFO">
<appender-ref ref="console"/>
<appender-ref ref="fileInfoLog"/>
</root>
</configuration>