消息订阅
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
package com.czg.product.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 耗材分组关联关系
|
||||
*
|
||||
* @author Tankaikai tankaikai@aliyun.com
|
||||
* @since 1.0 2025-02-20
|
||||
*/
|
||||
@Data
|
||||
public class ConsGroupRelationDTO implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 分组 id
|
||||
*/
|
||||
private Long groupId;
|
||||
/**
|
||||
* 耗材 Id
|
||||
*/
|
||||
private Long consId;
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
}
|
||||
@@ -1,38 +0,0 @@
|
||||
package com.czg.product.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 耗材分组关联关系
|
||||
*
|
||||
* @author Tankaikai tankaikai@aliyun.com
|
||||
* @since 1.0 2025-02-20
|
||||
*/
|
||||
@Data
|
||||
@Table("tb_cons_group_relation")
|
||||
public class ConsGroupRelation implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 分组 id
|
||||
*/
|
||||
@Id(keyType = KeyType.None)
|
||||
private Long groupId;
|
||||
/**
|
||||
* 耗材 Id
|
||||
*/
|
||||
@Id(keyType = KeyType.None)
|
||||
private Long consId;
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
package com.czg.product.service;
|
||||
|
||||
import com.czg.product.entity.ConsGroupRelation;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
|
||||
/**
|
||||
* 耗材分组关联关系
|
||||
*
|
||||
* @author Tankaikai tankaikai@aliyun.com
|
||||
* @since 1.0 2025-02-20
|
||||
*/
|
||||
public interface ConsGroupRelationService extends IService<ConsGroupRelation> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user