@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.*;
/**
* 消息接收记录表 控制层。
*
- * @author 86181
+ * @author wany
* @since 2023-12-27
*/
@RestController
@@ -29,7 +29,7 @@ import org.springframework.web.bind.annotation.*;
* 供应商合作记录表 控制层。
* @since 2023-12-21
@Tag(name = "SrmCooperateController", description = "供应商合作记录表 控制层。")
@@ -33,7 +33,7 @@ import org.springframework.web.bind.annotation.*;
* 供应商信息表 控制层。
@Tag(name = "SrmSupplierController", description = "供应商信息表 控制层。")
@@ -6,7 +6,7 @@ import com.kingtom.shengtai.app.message.model.MsgReceive;
* 消息接收记录表 映射层。
public interface IMsgReceiveDao extends IBaseDao<MsgReceive> {
@@ -6,7 +6,7 @@ import com.kingtom.shengtai.app.message.model.MsgSummary;
* 消息内容表 映射层。
public interface IMsgSummaryDao extends IBaseDao<MsgSummary> {
@@ -15,7 +15,7 @@ import lombok.NoArgsConstructor;
* 消息接收记录表 实体类。
@Data
* 消息内容表 实体类。
@@ -8,7 +8,7 @@ import com.mybatisflex.core.table.TableDef;
* 消息接收记录表 表定义层。
public class MsgReceiveTableDef extends TableDef {
* 消息内容表 表定义层。
public class MsgSummaryTableDef extends TableDef {
@@ -10,7 +10,7 @@ import com.mybatisflex.core.paginate.Page;
* 消息接收记录表 服务层。
* @since 2023 -12-27
public interface IMsgReceiveService extends IBaseService<MsgReceive>{
@@ -8,7 +8,7 @@ import com.kingtom.shengtai.app.message.model.MsgSummary;
* 消息内容表 服务层。
public interface IMsgSummaryService extends IBaseService<MsgSummary>{
@@ -21,7 +21,7 @@ import static com.kingtom.shengtai.app.message.model.table.MsgReceiveTableDef.MS
* 消息接收记录表 服务层实现。
@Service
@@ -19,7 +19,7 @@ import org.springframework.stereotype.Service;
* 消息内容表 服务层实现。
@@ -6,7 +6,7 @@ import com.kingtom.shengtai.app.srm.model.SrmCooperate;
* 供应商合作记录表 映射层。
public interface ISrmCooperateDao extends IBaseDao<SrmCooperate> {
@@ -6,7 +6,7 @@ import com.kingtom.shengtai.app.srm.model.SrmSupplier;
* 供应商信息表 映射层。
public interface ISrmSupplierDao extends IBaseDao<SrmSupplier> {
@@ -14,7 +14,7 @@ import lombok.NoArgsConstructor;
* 供应商合作记录表 实体类。
* 供应商信息表 实体类。
* 供应商合作记录表 表定义层。
public class SrmCooperateTableDef extends TableDef {
* 供应商信息表 表定义层。
public class SrmSupplierTableDef extends TableDef{
* 供应商合作记录表 服务层。
public interface ISrmCooperateService extends IBaseService<SrmCooperate>{
* 供应商信息表 服务层。
* @since 2023 -12-21
public interface ISrmSupplierService extends IBaseService<SrmSupplier>{
@@ -28,7 +28,7 @@ import static com.kingtom.shengtai.app.srm.model.table.SrmCooperateTableDef.SRM_
* 供应商合作记录表 服务层实现。
@@ -38,7 +38,7 @@ import static com.kingtom.shengtai.app.srm.model.table.SrmSupplierTableDef.SRM_S
* 供应商信息表 服务层实现。