Commit 3d7a682d by wancheng

日志注解更新

parent ee990627
...@@ -70,7 +70,7 @@ public class ServiceHPKC003A extends ServiceEPBase { ...@@ -70,7 +70,7 @@ public class ServiceHPKC003A extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "生产任务查询",operType = "查询",operDesc = "查询") @OperationLogAnnotation(operModul = "生产任务查询",operType = "查询",operDesc = "生产入库单-生产任务查询-查询")
@Override @Override
public EiInfo query(EiInfo inInfo) { public EiInfo query(EiInfo inInfo) {
try { try {
...@@ -89,7 +89,7 @@ public class ServiceHPKC003A extends ServiceEPBase { ...@@ -89,7 +89,7 @@ public class ServiceHPKC003A extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "生产任务查询",operType = "插入",operDesc = "生成入库单") @OperationLogAnnotation(operModul = "生产任务查询",operType = "插入",operDesc = "生产入库单-生产任务查询-生成入库单")
public EiInfo select(EiInfo inInfo) { public EiInfo select(EiInfo inInfo) {
try { try {
List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows(); List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
......
...@@ -24,7 +24,7 @@ public class ServiceHPKC010A extends ServiceBase { ...@@ -24,7 +24,7 @@ public class ServiceHPKC010A extends ServiceBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "库存管理",operType = "插入",operDesc = "备份数据") @OperationLogAnnotation(operModul = "库存管理",operType = "插入",operDesc = "实时库存管理-备份数据")
public EiInfo backup(EiInfo inInfo) { public EiInfo backup(EiInfo inInfo) {
try { try {
Map queryMap = new HashMap(); Map queryMap = new HashMap();
......
...@@ -24,7 +24,7 @@ public class ServiceHPKC011A extends ServiceBase { ...@@ -24,7 +24,7 @@ public class ServiceHPKC011A extends ServiceBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "库存管理",operType = "插入",operDesc = "备份数据") @OperationLogAnnotation(operModul = "库存管理",operType = "插入",operDesc = "产品库存管理-备份数据")
public EiInfo backup(EiInfo inInfo) { public EiInfo backup(EiInfo inInfo) {
try { try {
Map queryMap = new HashMap(); Map queryMap = new HashMap();
......
...@@ -26,7 +26,7 @@ public class ServiceHPSC005D extends ServiceBase { ...@@ -26,7 +26,7 @@ public class ServiceHPSC005D extends ServiceBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "生产任务详情",operType = "查询",operDesc = "初始化") @OperationLogAnnotation(operModul = "生产任务详情",operType = "查询",operDesc = "生产订单-生产任务详情-初始化")
public EiInfo initLoad(EiInfo inInfo) { public EiInfo initLoad(EiInfo inInfo) {
try { try {
Map queryMap = EiInfoUtils.getFirstRow(inInfo); Map queryMap = EiInfoUtils.getFirstRow(inInfo);
......
...@@ -32,7 +32,7 @@ public class ServiceHPZL001A extends ServiceEPBase { ...@@ -32,7 +32,7 @@ public class ServiceHPZL001A extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "附件清单",operType = "查询",operDesc = "初始化") @OperationLogAnnotation(operModul = "附件清单",operType = "查询",operDesc = "质量巡检单-附件清单-初始化")
public EiInfo initLoad(EiInfo inInfo) { public EiInfo initLoad(EiInfo inInfo) {
try { try {
// 查询物料ID所对应的项目名称和部件名称 // 查询物料ID所对应的项目名称和部件名称
...@@ -55,7 +55,7 @@ public class ServiceHPZL001A extends ServiceEPBase { ...@@ -55,7 +55,7 @@ public class ServiceHPZL001A extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "附件清单",operType = "查询",operDesc = "查询") @OperationLogAnnotation(operModul = "附件清单",operType = "查询",operDesc = "质量巡检单-附件清单-查询")
@Override @Override
public EiInfo query(EiInfo inInfo) { public EiInfo query(EiInfo inInfo) {
try { try {
...@@ -72,7 +72,7 @@ public class ServiceHPZL001A extends ServiceEPBase { ...@@ -72,7 +72,7 @@ public class ServiceHPZL001A extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "附件清单",operType = "新增",operDesc = "新增操作") @OperationLogAnnotation(operModul = "附件清单",operType = "新增",operDesc = "质量巡检单-附件清单-新增操作")
@Override @Override
public EiInfo insert(EiInfo inInfo) { public EiInfo insert(EiInfo inInfo) {
try { try {
...@@ -100,7 +100,7 @@ public class ServiceHPZL001A extends ServiceEPBase { ...@@ -100,7 +100,7 @@ public class ServiceHPZL001A extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "附件清单",operType = "删除",operDesc = "删除操作") @OperationLogAnnotation(operModul = "附件清单",operType = "删除",operDesc = "质量巡检单-附件清单-删除操作")
public EiInfo delete(EiInfo inInfo) { public EiInfo delete(EiInfo inInfo) {
try { try {
List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows(); List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
......
...@@ -44,7 +44,7 @@ public class ServiceHPZL001B extends ServiceEPBase { ...@@ -44,7 +44,7 @@ public class ServiceHPZL001B extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "生产任务查询",operType = "查询",operDesc = "初始化") @OperationLogAnnotation(operModul = "生产任务查询",operType = "查询",operDesc = "质量巡检单-生产任务查询-初始化")
@Override @Override
public EiInfo initLoad(EiInfo inInfo) { public EiInfo initLoad(EiInfo inInfo) {
try { try {
...@@ -61,7 +61,7 @@ public class ServiceHPZL001B extends ServiceEPBase { ...@@ -61,7 +61,7 @@ public class ServiceHPZL001B extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "生产任务查询",operType = "查询",operDesc = "查询") @OperationLogAnnotation(operModul = "生产任务查询",operType = "查询",operDesc = "质量巡检单-生产任务查询-查询")
@Override @Override
public EiInfo query(EiInfo inInfo) { public EiInfo query(EiInfo inInfo) {
try { try {
...@@ -81,7 +81,7 @@ public class ServiceHPZL001B extends ServiceEPBase { ...@@ -81,7 +81,7 @@ public class ServiceHPZL001B extends ServiceEPBase {
* @param inInfo * @param inInfo
* @return * @return
*/ */
@OperationLogAnnotation(operModul = "生产任务查询",operType = "新增",operDesc = "生成巡检单") @OperationLogAnnotation(operModul = "生产任务查询",operType = "新增",operDesc = "质量巡检单-生产任务查询-生成巡检单")
public EiInfo select(EiInfo inInfo) { public EiInfo select(EiInfo inInfo) {
try { try {
List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows(); List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment