feat(pocket): 新增工厂状态数据的CURD功能
- 为Klptcm1ProPlantStateCurrent实体增加完整的增删改查接口 - 实现按复合键(INSDATE+TYPE)查询、插入、更新和删除逻辑 - 在Mapper层添加对应的XML SQL映射支持 - 为Klptcm1ProPlantStateDefine增加ID查询、批量删除等功能 - 添加PlantStateWithValueVo视图对象及相关联查逻辑 - 提供根据名称获取带值的状态定义列表方法 - 控制器层新增RESTful API endpoints支持完整操作- 完善服务层实现并暴露统一的服务接口供调用
This commit is contained in:
@@ -4,9 +4,18 @@ import com.klp.common.core.domain.PageQuery;
|
||||
import com.klp.common.core.page.TableDataInfo;
|
||||
import com.klp.pocket.domain.Klptcm1ProPlantStateCurrent;
|
||||
import java.util.List;
|
||||
import java.util.Date;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public interface IKlptcm1ProPlantStateCurrentService {
|
||||
|
||||
TableDataInfo<Klptcm1ProPlantStateCurrent> selectAll(PageQuery pageQuery);
|
||||
|
||||
Klptcm1ProPlantStateCurrent selectOne(Date insdate, BigDecimal type);
|
||||
|
||||
int insert(Klptcm1ProPlantStateCurrent entity);
|
||||
|
||||
int updateByKey(Klptcm1ProPlantStateCurrent entity);
|
||||
|
||||
int deleteByKey(Date insdate, BigDecimal type);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user