StoreVO.java 1.55 KB
package vion.vo;

import lombok.Data;

import java.util.Date;

@Data
public class StoreVO {
    private Integer id;
    private String storenum;
    private String name ;// 门店名称
    private String number;// 流水号
    private String contract_code;//合同编码
    private Float amount;// 合同金额
    private Date orderdate;//签订日期
    private Integer salesperson;//销售人
    private Integer warranty_period;//质保期
    private String customer_name;//客户姓名
    private Integer implement_type;//实施类型:0纯供货、1供货+安装、3续保、4维修
    private Integer project_state;//项目状态:0待确认、1进行中、2已完成、3挂起
    private String contacts;//联系人(多个联系人逗号隔开)
    private Integer create_user;//创建者
    private Integer modify_user;//修改者
    private Date create_time;//创建时间
    private Date modify_time;//修改时间
    private String remark;//备注
    private Integer project_stage;//项目阶段
    private Integer account_id;//集团id

    //地址信息
    private String consignee_name;//收货名称
    private String consignee_phone;//收货手机号
    private String consignee_address;//收货地址
    private String contract_name;//合同姓名
    private String contract_phone;//合同手机号
    private String contract_address;//合同地址
    private String invoice_name ;//发票姓名
    private String invoice_phone;//发票手机号
    private String invoice_address;//发票地址
    private String invoice_info;//开票信息
}