admin
2018-12-19 4023875003da2260c54a30c1ef8e0b2a50e7f39f
项目结构修改
2 文件已重命名
7个文件已修改
1个文件已添加
117 ■■■■ 已修改文件
fanli-common-config/pom.xml 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli-common/pom.xml 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli-facade-goods/pom.xml 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli-facade-goods/src/main/java/org/fanli/facade/goods/entity/usergoods/CollectionGoodsV2.java 66 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli-service-goods/pom.xml 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli-service-goods/src/main/webapp/WEB-INF/web.xml 补丁 | 查看 | 原始文档 | blame | 历史
fanli-service-system/pom.xml 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli-service-system/src/main/webapp/WEB-INF/web.xml 补丁 | 查看 | 原始文档 | blame | 历史
fanli-utils/pom.xml 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pom.xml 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli-common-config/pom.xml
@@ -16,6 +16,7 @@
    </properties>
    <packaging>jar</packaging>
    <build>
        <finalName>fanli-common-config</finalName>
        <resources>
            <!-- 加载代码 -->
            <resource>
fanli-common/pom.xml
@@ -17,15 +17,13 @@
    </properties>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.yeshi.fanli</groupId>
            <artifactId>fanli-utils</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
    </dependencies>
    <build>
        <finalName>fanli-common</finalName>
    </build>
</project>
fanli-facade-goods/pom.xml
@@ -16,12 +16,6 @@
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.yeshi.fanli</groupId>
@@ -36,4 +30,7 @@
        </dependency>
    </dependencies>
    <build>
        <finalName>fanli-facade-goods</finalName>
    </build>
</project>
fanli-facade-goods/src/main/java/org/fanli/facade/goods/entity/usergoods/CollectionGoodsV2.java
New file
@@ -0,0 +1,66 @@
package org.fanli.facade.goods.entity.usergoods;
import java.util.Date;
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
import com.yeshi.fanli.base.entity.goods.CommonGoods;
import com.yeshi.fanli.base.entity.user.UserInfo;
@Table("yeshi_ec_collection_goods_v2")
public class CollectionGoodsV2 {
    @Column(name = "cg_id")
    private Long id;
    @Column(name = "cg_uid")
    private UserInfo userInfo;
    @Column(name = "cg_common_goods_id")
    private CommonGoods commonGoods;
    @Column(name = "cg_createtime")
    private Date createTime;
    @Column(name = "cg_updatetime")
    private Date updateTime;
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public UserInfo getUserInfo() {
        return userInfo;
    }
    public void setUserInfo(UserInfo userInfo) {
        this.userInfo = userInfo;
    }
    public CommonGoods getCommonGoods() {
        return commonGoods;
    }
    public void setCommonGoods(CommonGoods commonGoods) {
        this.commonGoods = commonGoods;
    }
    public Date getCreateTime() {
        return createTime;
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    public Date getUpdateTime() {
        return updateTime;
    }
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}
fanli-service-goods/pom.xml
@@ -29,4 +29,18 @@
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
    </dependencies>
    <build>
      <finalName>fanli-goods</finalName>
      <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
fanli-service-goods/src/main/webapp/WEB-INF/web.xml
fanli-service-system/pom.xml
@@ -29,4 +29,17 @@
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
    </dependencies>
    <build>
        <finalName>fanli-system</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
fanli-service-system/src/main/webapp/WEB-INF/web.xml
fanli-utils/pom.xml
@@ -23,4 +23,7 @@
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <finalName>fanli-utils</finalName>
    </build>
</project>
pom.xml
@@ -11,6 +11,7 @@
    <url>http://maven.apache.org</url>
    <modules>
        <module>fanli-utils</module>
        <module>fanli-common</module>
        <module>fanli-common-config</module>
        <module>fanli-facade-system</module>