11 changed files with 121 additions and 13 deletions
@ -0,0 +1,56 @@
|
||||
package com.logpm.trunkline.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
@Data |
||||
@TableName("logpm_trunkline_billlading_line") |
||||
@ApiModel(value = "TrunklineBillladingLine对象", description = "干线提货线路表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class TrunklineBillladingLineEntity extends TenantEntity { |
||||
|
||||
/** 预留1 */ |
||||
@ApiModelProperty(name = "预留1",notes = "") |
||||
private String reserve1 ; |
||||
/** 预留2 */ |
||||
@ApiModelProperty(name = "预留2",notes = "") |
||||
private String reserve2 ; |
||||
/** 预留3 */ |
||||
@ApiModelProperty(name = "预留3",notes = "") |
||||
private String reserve3 ; |
||||
/** 预留4 */ |
||||
@ApiModelProperty(name = "预留4",notes = "") |
||||
private String reserve4 ; |
||||
/** 预留5 */ |
||||
@ApiModelProperty(name = "预留5",notes = "") |
||||
private String reserve5 ; |
||||
/** 仓库id */ |
||||
@ApiModelProperty(name = "仓库id",notes = "") |
||||
private Long warehouseId ; |
||||
/** 仓库名称 */ |
||||
@ApiModelProperty(name = "仓库名称",notes = "") |
||||
private String warehouseName ; |
||||
/** 提货单id */ |
||||
@ApiModelProperty(name = "提货单id",notes = "") |
||||
private Long billladingId ; |
||||
/** 客户类型 1 工厂 2 商场 3装饰 4个人 */ |
||||
@ApiModelProperty(name = "客户类型 1 工厂 2 商场 3装饰 4个人",notes = "") |
||||
private String clientType ; |
||||
/** 联系人 */ |
||||
@ApiModelProperty(name = "联系人",notes = "") |
||||
private String linkMan ; |
||||
/** 联系电话 */ |
||||
@ApiModelProperty(name = "联系电话",notes = "") |
||||
private String linkPhone ; |
||||
/** 联系人地址 */ |
||||
@ApiModelProperty(name = "联系人地址",notes = "") |
||||
private String linkAddress ; |
||||
/** 排序 */ |
||||
@ApiModelProperty(name = "排序",notes = "") |
||||
private Integer sort ; |
||||
|
||||
} |
@ -0,0 +1,11 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineBillladingLineEntity; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class TrunklineBillladingLineVO extends TrunklineBillladingLineEntity { |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.trunkline.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.trunkline.entity.TrunklineBillladingLineEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface TrunklineBillladingLineMapper extends BaseMapper<TrunklineBillladingLineEntity> { |
||||
} |
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.trunkline.mapper.TrunklineBillladingLineMapper"> |
||||
|
||||
|
||||
</mapper> |
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.trunkline.mapper.TrunklineBillladingPackageMapper"> |
||||
|
||||
|
||||
</mapper> |
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.trunkline.mapper.TrunklineDetailProductMapper"> |
||||
|
||||
|
||||
</mapper> |
@ -0,0 +1,7 @@
|
||||
package com.logpm.trunkline.service; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineBillladingLineEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface ITrunklineBillladingLineService extends BaseService<TrunklineBillladingLineEntity> { |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.trunkline.service.impl; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineBillladingLineEntity; |
||||
import com.logpm.trunkline.mapper.TrunklineBillladingLineMapper; |
||||
import com.logpm.trunkline.service.ITrunklineBillladingLineService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Slf4j |
||||
@AllArgsConstructor |
||||
@Service |
||||
public class TrunklineBillladingLineServiceImpl extends BaseServiceImpl<TrunklineBillladingLineMapper, TrunklineBillladingLineEntity> implements ITrunklineBillladingLineService { |
||||
} |
Loading…
Reference in new issue