This commit is contained in:
linfso 2024-05-11 10:40:32 +08:00
parent 1fa6f17d4c
commit 191cb4dd04
7 changed files with 8 additions and 36 deletions

View File

@ -1,13 +0,0 @@
<component name="libraryTable">
<library name="Maven: com.xdadan:emis-framework:1.0.2">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/com/xdadan/emis-framework/1.0.2/emis-framework-1.0.2.jar!/" />
</CLASSES>
<JAVADOC>
<root url="jar://$MAVEN_REPOSITORY$/com/xdadan/emis-framework/1.0.2/emis-framework-1.0.2-javadoc.jar!/" />
</JAVADOC>
<SOURCES>
<root url="jar://$MAVEN_REPOSITORY$/com/xdadan/emis-framework/1.0.2/emis-framework-1.0.2-sources.jar!/" />
</SOURCES>
</library>
</component>

View File

@ -1,13 +0,0 @@
<component name="libraryTable">
<library name="Maven: com.xdadan:emis-system:1.0.2">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/com/xdadan/emis-system/1.0.2/emis-system-1.0.2.jar!/" />
</CLASSES>
<JAVADOC>
<root url="jar://$MAVEN_REPOSITORY$/com/xdadan/emis-system/1.0.2/emis-system-1.0.2-javadoc.jar!/" />
</JAVADOC>
<SOURCES>
<root url="jar://$MAVEN_REPOSITORY$/com/xdadan/emis-system/1.0.2/emis-system-1.0.2-sources.jar!/" />
</SOURCES>
</library>
</component>

View File

@ -55,9 +55,6 @@ public class EmisQuoteDispArea extends BaseEntity
private String sync;
/* 启用状态 0-启用 1-停用 */
private Integer status;
/* 创建网点 */
private String createSite;
/* 更新网点 */
private String updateSite;
}

View File

@ -54,10 +54,6 @@ public class EmisQuoteSendArea extends BaseEntity
private String sync;
/* 启用状态 0-启用 1-停用 */
private Integer status;
/* 创建网点 */
private String createSite;
/* 更新网点 */
private String updateSite;
/* 使用站点名称 */
private String useSite;

View File

@ -62,6 +62,8 @@ public class EmisQuoteDispAreaServiceImpl implements IEmisQuoteDispAreaService
@Override
public int insertEmisQuoteDispArea(EmisQuoteDispArea emisQuoteDispArea)
{
emisQuoteDispArea.preInsert();
return emisQuoteDispAreaMapper.insertEmisQuoteDispArea(emisQuoteDispArea);
}
@ -74,6 +76,7 @@ public class EmisQuoteDispAreaServiceImpl implements IEmisQuoteDispAreaService
@Override
public int updateEmisQuoteDispArea(EmisQuoteDispArea emisQuoteDispArea)
{
emisQuoteDispArea.preUpdate();
return emisQuoteDispAreaMapper.updateEmisQuoteDispArea(emisQuoteDispArea);
}

View File

@ -62,6 +62,7 @@ public class EmisQuoteSendAreaServiceImpl implements IEmisQuoteSendAreaService
@Override
public int insertEmisQuoteSendArea(EmisQuoteSendArea emisQuoteSendArea)
{
emisQuoteSendArea.preInsert();
return emisQuoteSendAreaMapper.insertEmisQuoteSendArea(emisQuoteSendArea);
}
@ -74,6 +75,7 @@ public class EmisQuoteSendAreaServiceImpl implements IEmisQuoteSendAreaService
@Override
public int updateEmisQuoteSendArea(EmisQuoteSendArea emisQuoteSendArea)
{
emisQuoteSendArea.preUpdate();
return emisQuoteSendAreaMapper.updateEmisQuoteSendArea(emisQuoteSendArea);
}

View File

@ -19,8 +19,8 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: com.xdadan:emis-framework:1.0.2" level="project" />
<orderEntry type="library" name="Maven: com.xdadan:emis-system:1.0.2" level="project" />
<orderEntry type="library" name="Maven: com.xdadan:emis-framework:1.0.4" level="project" />
<orderEntry type="library" name="Maven: com.xdadan:emis-system:1.0.4" level="project" />
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.5.10" level="project" />
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.5.10" level="project" />
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.5.10" level="project" />