分销更名 全民股东
新增全民股东群聊配置
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
package com.czg.market.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* 分销员管理群(全民股东管理) 实体类。
|
||||
*
|
||||
* @author ww
|
||||
* @since 2026-01-28
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Table("mk_distribution_group")
|
||||
public class MkDistributionGroup implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
private Long shopId;
|
||||
|
||||
/**
|
||||
* 群二维码地址
|
||||
*/
|
||||
private String groupUrl;
|
||||
|
||||
/**
|
||||
* 模块标题 15字以内
|
||||
*/
|
||||
private String title;
|
||||
|
||||
/**
|
||||
* 模块内容 20字以内
|
||||
*/
|
||||
private String content;
|
||||
|
||||
/**
|
||||
* 是否开启
|
||||
*/
|
||||
private Integer isEnable;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(onInsertValue = "now()")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@Column(onInsertValue = "now()", onUpdateValue = "now()")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.czg.market.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
@@ -117,5 +116,9 @@ public class MkDistributionUser implements Serializable {
|
||||
* 邀请码
|
||||
*/
|
||||
private String inviteCode;
|
||||
/**
|
||||
* 是否第一次进入全民股东界面
|
||||
*/
|
||||
private Integer firstIn;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.czg.market.service;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.czg.market.entity.MkDistributionGroup;
|
||||
|
||||
/**
|
||||
* 分销员管理群(全民股东管理) 服务层。
|
||||
*
|
||||
* @author ww
|
||||
* @since 2026-01-28
|
||||
*/
|
||||
public interface MkDistributionGroupService extends IService<MkDistributionGroup> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user