
10 changed files with 526 additions and 25 deletions
@ -0,0 +1,196 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.as.feign.yxtcrm; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
import com.yxt.common.core.domain.BaseEntity; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* Project: crm(crm) <br/> |
|||
* File: CrmCustomer.java <br/> |
|||
* Class: com.yxt.crm.api.crmcustomer.CrmCustomer <br/> |
|||
* Description: 客户. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2024-03-15 17:06:09 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "客户", description = "客户") |
|||
@TableName("crm_customer") |
|||
public class CrmCustomer extends BaseEntity { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
@ApiModelProperty("客户编号(部门编码+客户类型(1位,0个人,1企业)+部门内部流水号(6位))") |
|||
private String customerNo; |
|||
|
|||
@ApiModelProperty("客户类型(自然人/法人)") |
|||
private String customerType; |
|||
|
|||
@ApiModelProperty("客户类型key") |
|||
private String customerTypeKey; |
|||
|
|||
@ApiModelProperty("客户分类(个人:司机/个体老板/其他。企业:企业型客户/一级经销商/二级经销商/终端物流客户)") |
|||
private String customerClass; |
|||
|
|||
@ApiModelProperty("客户分类key") |
|||
private String customerClassKey; |
|||
|
|||
@ApiModelProperty("客户来源(公司资源/自主开发/交接客户/转介绍客户/集团内销)") |
|||
private String source; |
|||
|
|||
@ApiModelProperty("客户来源key") |
|||
private String sourceKey; |
|||
|
|||
@ApiModelProperty("客户级别(意向客户/准客户/成交客户/集团内销/黑名单客户)") |
|||
private String level; |
|||
|
|||
@ApiModelProperty("客户级别key") |
|||
private String levelKey; |
|||
|
|||
@ApiModelProperty("客户名称") |
|||
private String name; |
|||
|
|||
@ApiModelProperty("证件类型key") |
|||
private String certificateTypeKey; |
|||
|
|||
@ApiModelProperty("证件类型(个人为身份证/企业为营业执照)") |
|||
private String certificateType; |
|||
|
|||
@ApiModelProperty("证件号码(个人为身份证号/企业为统一社会信用代码)") |
|||
private String IDNumber; |
|||
|
|||
@ApiModelProperty("证件有效期") |
|||
private String endDate; |
|||
|
|||
@ApiModelProperty("行政区划代码(省)") |
|||
private String address_province; |
|||
|
|||
@ApiModelProperty("行政区划代码(市)") |
|||
private String address_city; |
|||
|
|||
@ApiModelProperty("行政区划代码(县)") |
|||
private String address_county; |
|||
|
|||
@ApiModelProperty("省") |
|||
private String province; |
|||
|
|||
@ApiModelProperty("市") |
|||
private String city; |
|||
|
|||
@ApiModelProperty("县") |
|||
private String county; |
|||
|
|||
@ApiModelProperty("详细地址") |
|||
private String address; |
|||
|
|||
@ApiModelProperty("邮编") |
|||
private String zipCode; |
|||
|
|||
@ApiModelProperty("电子邮箱") |
|||
private String e_mail; |
|||
|
|||
@ApiModelProperty("联系人") |
|||
private String contacts; |
|||
|
|||
@ApiModelProperty("联系电话") |
|||
private String mobile; |
|||
|
|||
@ApiModelProperty("紧急联系电话") |
|||
private String emergencyContact; |
|||
|
|||
@ApiModelProperty("紧急联系电话") |
|||
private String emergencyMobile; |
|||
|
|||
@ApiModelProperty("微信号码") |
|||
private String weixin; |
|||
|
|||
@ApiModelProperty("业务人员sid") |
|||
private String staffSid; |
|||
|
|||
@ApiModelProperty("创建组织sid") |
|||
private String createOrgSid; |
|||
|
|||
@ApiModelProperty("创建部门sid") |
|||
private String useOrgSid; |
|||
|
|||
@ApiModelProperty("性别") |
|||
private String sex; |
|||
|
|||
@ApiModelProperty("性别key") |
|||
private String sexKey; |
|||
|
|||
@ApiModelProperty("生日") |
|||
private String birthday; |
|||
|
|||
@ApiModelProperty("所在公司名称") |
|||
private String companyName; |
|||
|
|||
@ApiModelProperty("跟进状态key") |
|||
private String follow_state_key; |
|||
|
|||
@ApiModelProperty("跟进状态") |
|||
private String follow_state; |
|||
|
|||
@ApiModelProperty("是否开启提醒key(1开启,0不开启)") |
|||
private String isOnRemindkey; |
|||
|
|||
@ApiModelProperty("是否开启提醒(1开启,0不开启)") |
|||
private String isOnRemind; |
|||
|
|||
@ApiModelProperty("提醒日期") |
|||
private String remind_day; |
|||
|
|||
@ApiModelProperty("提醒备注") |
|||
private String remind_remark; |
|||
|
|||
@ApiModelProperty("客户头像") |
|||
private String customerPhoto; |
|||
|
|||
@ApiModelProperty("见面方式key") |
|||
private String visitWayKey; |
|||
|
|||
@ApiModelProperty("见面方式(到店/电话/拜访)") |
|||
private String visitWay; |
|||
|
|||
@ApiModelProperty("证件地址") |
|||
private String certificateAddress; |
|||
|
|||
@ApiModelProperty("是否为定点企业(1是0否)") |
|||
private Integer isDesignatedEnterprise; |
|||
|
|||
@ApiModelProperty("定点企业备案有效期") |
|||
private Date filingIndate; |
|||
|
|||
} |
@ -0,0 +1,68 @@ |
|||
package com.yxt.wms.biz.inventory.wmsinventory.report; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class InventoryStockListQuery implements Query { |
|||
|
|||
/** |
|||
* 成本单价区间结束 |
|||
*/ |
|||
private String costEnd; |
|||
/** |
|||
* 成本单价区间开始 |
|||
*/ |
|||
private String costStart; |
|||
/** |
|||
* 库存数量区间结束 |
|||
*/ |
|||
private String countEnd; |
|||
/** |
|||
* 库存数量区间开始 |
|||
*/ |
|||
private String countStart; |
|||
/** |
|||
* 商品ID |
|||
*/ |
|||
private String goodsID; |
|||
/** |
|||
* 图号 |
|||
*/ |
|||
private String goodsSkuCode; |
|||
/** |
|||
* 商品名称 |
|||
*/ |
|||
private String goodsSpuName; |
|||
/** |
|||
* 厂家 |
|||
*/ |
|||
private String manufacturerName; |
|||
private String menuUrl; |
|||
private String orgPath; |
|||
/** |
|||
* 销售价区间结束 |
|||
*/ |
|||
private String priceEnd; |
|||
/** |
|||
* 销售价区间开始 |
|||
*/ |
|||
private String priceStart; |
|||
/** |
|||
* 供应商 |
|||
*/ |
|||
private String supplierName; |
|||
private String userSid; |
|||
/** |
|||
* 库区 |
|||
*/ |
|||
private String wareAreaName; |
|||
/** |
|||
* 仓库 |
|||
*/ |
|||
private String warehouseName; |
|||
/** |
|||
* 库位 |
|||
*/ |
|||
private String warehouseRackCode; |
|||
} |
@ -0,0 +1,105 @@ |
|||
package com.yxt.wms.biz.inventory.wmsinventory.report; |
|||
|
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class InventoryStockListVo { |
|||
|
|||
/** |
|||
* 成本价 |
|||
*/ |
|||
private String cost; |
|||
/** |
|||
* 成本合计 |
|||
*/ |
|||
private String costTotal; |
|||
/** |
|||
* 库存数量 |
|||
*/ |
|||
private String count; |
|||
/** |
|||
* 门店 |
|||
*/ |
|||
private String deptName; |
|||
/** |
|||
* 首次入库时间 |
|||
*/ |
|||
private String firstInDate; |
|||
/** |
|||
* 商品ID |
|||
*/ |
|||
private String goodsID; |
|||
/** |
|||
* 图号 |
|||
*/ |
|||
private String goodsSkuCode; |
|||
/** |
|||
* 规格 |
|||
*/ |
|||
private String goodsSkuOwnSpec; |
|||
/** |
|||
* 商品名称 |
|||
*/ |
|||
private String goodsSpuName; |
|||
/** |
|||
* 最近一次入库距当前天数 |
|||
*/ |
|||
private String inventoryAge; |
|||
/** |
|||
* 最近一次销售时间 |
|||
*/ |
|||
private String lastSalesDate; |
|||
/** |
|||
* 最近一次入库时间 |
|||
*/ |
|||
private String lastStorageDate; |
|||
/** |
|||
* 订单编号 |
|||
*/ |
|||
private String manufactorBillNo; |
|||
/** |
|||
* 厂家 |
|||
*/ |
|||
private String manufacturerName; |
|||
/** |
|||
* 厂家订单类型 |
|||
*/ |
|||
private String manufacturersOrderTypeValue; |
|||
/** |
|||
* 销售单价 |
|||
*/ |
|||
private String price; |
|||
/** |
|||
* 采购方式 |
|||
*/ |
|||
private String procurementMethod; |
|||
/** |
|||
* 采购类别 |
|||
*/ |
|||
private String purchaseTypeValue; |
|||
/** |
|||
* 供应商 |
|||
*/ |
|||
private String supplierName; |
|||
/** |
|||
* 单位 |
|||
*/ |
|||
private String unit; |
|||
/** |
|||
* 分公司 |
|||
*/ |
|||
private String useOrgName; |
|||
/** |
|||
* 库区 |
|||
*/ |
|||
private String wareAreaName; |
|||
/** |
|||
* 仓库 |
|||
*/ |
|||
private String warehouseName; |
|||
/** |
|||
* 库位 |
|||
*/ |
|||
private String warehouseRackCode; |
|||
|
|||
} |
Loading…
Reference in new issue