mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-08 06:05:33 +08:00
feat 商户
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user