{
  "tables": [
    {
      "name": "表名",
      "sheet": "Memo",
      "title": "创建时间",
      "fields": [
        {
          "key": "如果是主键，就填“PK”，否则为空。\n不要建立外键。",
          "field": "字段名称",
          "type": "字段类型，为了配合DBA规范，全部大写。",
          "required": "必填字段，用“NOT NULL”，否则为空。注意大写。",
          "default": "缺省值，用这样的格式：\nGETDATE()\nA\n这样主要是方便脚本生成。注意数据库关键字大写。",
          "remark": "如果这个字段只有有限的几个可能值，就在这里列出，否则为空。如:\nA:Active\nD:Deactive",
          "need_index": "是否需要创建索引，是为Y。",
          "title": "字段Title",
          "description": "对字段的描述，一些备注。如果该行是主键，对表的一些备注也可以写在这里。"
        }
      ]
    },
    {
      "name": "WHS",
      "sheet": "CWMMain",
      "title": "仓库",
      "fields": [
        {
          "key": "PK",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WHSName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库名称",
          "description": "仓库名称"
        },
        {
          "key": "",
          "field": "WHSDescription",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库描述",
          "description": "仓库描述"
        },
        {
          "key": "",
          "field": "WHSType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Real=真实仓库,\n1=Virtual=虚拟仓库",
          "need_index": "",
          "title": "仓库类型",
          "description": "仓库类型"
        },
        {
          "key": "",
          "field": "WHSKind",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=PlatformSelf=直营仓,\n1=Joint=联营仓,\n2=OnlyWMS=仅用系统",
          "need_index": "Y",
          "title": "仓库性质",
          "description": "仓库性质"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "Area",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库面积",
          "description": "仓库面积"
        },
        {
          "key": "",
          "field": "SenderProvinceName",
          "type": "NVARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "SenderCityName",
          "type": "NVARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "SenderDistrictName",
          "type": "NVARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区",
          "description": "区"
        },
        {
          "key": "",
          "field": "SenderAddress",
          "type": "NVARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件人地址",
          "description": "发件人地址"
        },
        {
          "key": "",
          "field": "SenderName",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件人姓名",
          "description": "发件人姓名"
        },
        {
          "key": "",
          "field": "SenderTelephone",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件人电话",
          "description": "发件人电话"
        },
        {
          "key": "",
          "field": "SenderCompany",
          "type": "NVARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件方公司名称",
          "description": "发件方公司名称"
        },
        {
          "key": "",
          "field": "SenderZipCode",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件地邮编",
          "description": "发件地邮编"
        },
        {
          "key": "",
          "field": "DefaultShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业默认物流ID",
          "description": "企业默认物流ID"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "DBSplitWHS",
      "sheet": "CWMMain",
      "title": "仓库维度切片配置核心表",
      "fields": [
        {
          "key": "PK",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WHSName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库名称",
          "description": "仓库名称"
        },
        {
          "key": "",
          "field": "SplitDBNode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据节点",
          "description": "数据节点，切片后该项目所在数据库服务器组的节点"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        }
      ]
    },
    {
      "name": "Area",
      "sheet": "CWMMain",
      "title": "地区，平台初始化",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ProvinceSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省编号",
          "description": "省编号"
        },
        {
          "key": "",
          "field": "CitySysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "城市编号",
          "description": "城市编号"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省名称",
          "description": "省名称"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "城市名称",
          "description": "城市名称"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "NVARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区县名称",
          "description": "区县名称"
        },
        {
          "key": "",
          "field": "Domain",
          "type": "NVARCHAR(10)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区域",
          "description": "区域"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "GBCode",
          "type": "VARCHAR(6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "地区编码",
          "description": "地区编码，固定6位"
        },
        {
          "key": "",
          "field": "GBSortCode",
          "type": "VARCHAR(6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "地区编码去双尾0",
          "description": "地区编码，去掉双尾数0"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "NVARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "NVARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "AuthUser",
      "sheet": "CWMMain",
      "title": "WMS用户",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "UserId",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "用户Id",
          "description": "用户Id"
        },
        {
          "key": "",
          "field": "UserName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户名",
          "description": "用户名"
        },
        {
          "key": "",
          "field": "Pwd",
          "type": "VARCHAR(64)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "密码",
          "description": "密码"
        },
        {
          "key": "",
          "field": "PasswordSalt",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "盐值",
          "description": "盐值"
        },
        {
          "key": "",
          "field": "Phone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "手机",
          "description": "手机"
        },
        {
          "key": "",
          "field": "Email",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "邮箱",
          "description": "邮箱"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "IsAdmin",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否为默认管理员",
          "description": "是否为默认管理员"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "LastLoginTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后登录时间",
          "description": "最后登录时间"
        },
        {
          "key": "",
          "field": "LastLoginIP",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后登录IP",
          "description": "最后登录IP"
        },
        {
          "key": "",
          "field": "LoginVerifyCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "校验码",
          "description": "扫码登录时的内网服务器生成的校验码"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "修改人"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "AuthUser_WHS",
      "sheet": "CWMMain",
      "title": "用户",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "UserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "用户编号",
          "description": "用户编号"
        },
        {
          "key": "",
          "field": "IsDefault",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否是默认仓库",
          "description": "是否是默认仓库，0=非，1是"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "AuthRole",
      "sheet": "CWMMain",
      "title": "角色表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RoleName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "角色名称",
          "description": "角色名称"
        },
        {
          "key": "",
          "field": "Note",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "IsGovernor",
          "type": "INT",
          "required": "NUll",
          "default": "0",
          "remark": "1=Is=主管,\n0=No=员工",
          "need_index": "",
          "title": "是否主管",
          "description": "是否主管"
        },
        {
          "key": "",
          "field": "Underling",
          "type": "VARCHAR(40)",
          "required": "NUll",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "绑定下属角色",
          "description": "绑定下属角色"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "AuthFunction",
      "sheet": "CWMMain",
      "title": "权限表，平台初始化",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "AppID",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统ID",
          "description": "应用系统ID"
        },
        {
          "key": "",
          "field": "TreeCode",
          "type": "VARCHAR(60)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "树级编码",
          "description": "TreeCode,2位一级"
        },
        {
          "key": "",
          "field": "FunctionKey",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "权限Key",
          "description": "权限Key"
        },
        {
          "key": "",
          "field": "FunctionName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "权限名称",
          "description": "权限名称"
        },
        {
          "key": "",
          "field": "MenuIcon",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "菜单图标",
          "description": "菜单图标"
        },
        {
          "key": "",
          "field": "IsMenu",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否为菜单",
          "description": "是否为菜单，1=菜单，0=不是菜单"
        },
        {
          "key": "",
          "field": "MenuUrl",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "导航地址",
          "description": "导航地址，点击后连接地址，主要是针对菜单"
        },
        {
          "key": "",
          "field": "Note",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "AuthRoleFunction",
      "sheet": "CWMMain",
      "title": "角色权限表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "RoleSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "FunctionSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "AuthRoleUser",
      "sheet": "CWMMain",
      "title": "角色用户表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "RoleSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "角色编号",
          "description": "角色编号"
        },
        {
          "key": "",
          "field": "UserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "用户编号",
          "description": "用户编号"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ShipType",
      "sheet": "CWMMain",
      "title": "物流类型",
      "fields": [
        {
          "key": "PK",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "ShortName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流简称",
          "description": "物流简称，代表物流公司"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "NeedExchange",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Yes=是,\n0=No=否",
          "need_index": "",
          "title": "是否需要对接标识",
          "description": "是否需要对接标识"
        },
        {
          "key": "",
          "field": "WaybillShip",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递平台",
          "description": "快递平台，获取运单时调用的快递接口：比如EMS和POSTB 都是调用EMS的接口，此字段值配置为EMS。不配置则默认为ShipTypeId"
        },
        {
          "key": "",
          "field": "WaybillPrintTemp",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "面单打印模板",
          "description": "面单打印模板：比如EMS和POSTB 都是打印EMS的面单，此字段值配置为EMS"
        },
        {
          "key": "",
          "field": "ThirdECShipTypeJson",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "第三方物流配置Json",
          "description": "第三方物流配置Json 如：{\"PDD\":\"STO\",\"DY\":\"shentong\"}"
        },
        {
          "key": "",
          "field": "APIConfigTemplate",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "API配置模板",
          "description": "API配置模板Json，如：\n[{\"CfgLabel\":\"百世API地址\",\"CfgKey\":\"BestExUrl\",\"CfgValue\":\"\"}\n {\"CfgLabel\":\"百世PartnerID\",\"CfgKey\":\"BestExPartnerID\",\"CfgValue\":\"\"}\n {\"CfgLabel\":\"百世PartnerKey\",\"CfgKey\":\"BestExPartnerKey\",\"CfgValue\":\"\"}\n {\"CfgLabel\":\"百世站点账户\",\"CfgKey\":\"BestExUserName\",\"CfgValue\":\"\"}\n {\"CfgLabel\":\"百世站点密码\",\"CfgKey\":\"BestExUserName\",\"CfgValue\":\"\"}]"
        },
        {
          "key": "",
          "field": "RouteCollectCfg",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "路由揽收配置",
          "description": "路由揽收配置，配置模板Json，如：\n[{\"CfgLabel\":\"百世站点账户\",\"CfgKey\":\"BestExUrl\",\"CfgValue\":\"\"}]"
        },
        {
          "key": "",
          "field": "SortNumber",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "序号",
          "description": "序号"
        },
        {
          "key": "",
          "field": "RegExp",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单号正则",
          "description": "运单号正则"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WHSShipTypeMSN",
      "sheet": "CWMMain",
      "title": "物流月结号字典表ShipType Monthly settlement number",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeMSNName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流字典名称",
          "description": "物流字典名称"
        },
        {
          "key": "",
          "field": "CfgMemo",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账号标记",
          "description": "账号标记，用于标记是哪个公司月结号下的快递，冗余到电子面单的cfgMemo中"
        },
        {
          "key": "",
          "field": "OrderQtyDemand",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "单量要求",
          "description": "对应月结账号要求订单量"
        },
        {
          "key": "",
          "field": "MSN",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "月结账号",
          "description": "月结账号，记录和识别月结号"
        },
        {
          "key": "",
          "field": "RouteCollectCfg",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "路由揽收配置",
          "description": "配置模板Json，如：\n[{\"CfgLabel\":\"百世站点账户\",\"CfgKey\":\"BestExUrl\",\"CfgValue\":\"\"}]"
        },
        {
          "key": "",
          "field": "APICollectFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Yes=是,\n0=No=否",
          "need_index": "",
          "title": "接口揽收标识",
          "description": "是否支持系统接口揽收包裹"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "Vendor",
      "sheet": "CWMMain",
      "title": "WMS的商户",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业ID",
          "description": "企业ID，Company.SysNo"
        },
        {
          "key": "",
          "field": "CompanyName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户名称",
          "description": "商户名称"
        },
        {
          "key": "",
          "field": "CompanyCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "组织机构代码",
          "description": "组织机构代码"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Yes=有效,\n0=No=无效",
          "need_index": "",
          "title": "状态",
          "description": "无效"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "CompanyContacter",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系人",
          "description": "联系人"
        },
        {
          "key": "",
          "field": "CompanyPhone",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "CompanyEmail",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Email",
          "description": "Email"
        },
        {
          "key": "",
          "field": "CompanyAdress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "地址",
          "description": "地址"
        },
        {
          "key": "",
          "field": "CompanyZipcode",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "邮编",
          "description": "邮编"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "Vendor_WHS",
      "sheet": "CWMMain",
      "title": "WMS的商户和仓库的关系表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "公司编号",
          "description": "公司编号"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Yes=有效,\n0=No=无效",
          "need_index": "",
          "title": "状态",
          "description": "无效"
        },
        {
          "key": "",
          "field": "UseWMS",
          "type": "int",
          "required": "NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "是否使用WMS",
          "description": "是否使用WMS"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorThirdEC",
      "sheet": "CWMMain",
      "title": "商户电商平台及店铺配置，本表的维护是需要对接时由云仓运维人员新增或绑定",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户SysNo",
          "description": "商户SysNo"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID",
          "description": "电商平台ID，即订单来源ID：TB=淘宝 、TM=天猫 、JD=京东、DD=当当、PP=拍拍、YX=易讯、EBAY=ebay、QQ=QQ 网购、AMAZON=亚马逊、SN=苏宁、GM=国美、WPH=唯品会、JM=聚美、LF=乐蜂、MGJ=蘑菇街、JS=聚尚、PX=拍鞋、YT=银泰、YHD=1 号店、VANCL=凡客、YL=邮乐、YG=优购、1688=阿里巴巴、POS=POS 门店、MIA=蜜芽、GW=商家官网、CT=村淘、YJWD=云集微店、PDD=拼多多、DY=抖音、KS=快手、MJK=美即刻、OTHERS=其他"
        },
        {
          "key": "",
          "field": "ThirdECName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台名称",
          "description": "电商平台名称"
        },
        {
          "key": "",
          "field": "ThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称"
        },
        {
          "key": "",
          "field": "ThirdECStoreID",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "店铺ID",
          "description": "电商平台店铺授权ID，即店铺的ID"
        },
        {
          "key": "",
          "field": "ThirdECStoreSecret",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺Secret",
          "description": "视频号获取token需要店铺Secret"
        },
        {
          "key": "",
          "field": "ThirdECToken",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户当前Token",
          "description": "商户当前Token"
        },
        {
          "key": "",
          "field": "ThirdECRefreshToken",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户刷新令牌",
          "description": "商户刷新令牌"
        },
        {
          "key": "",
          "field": "ThirdECTokenExpireTime",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Token过期时间",
          "description": "Token过期时间"
        },
        {
          "key": "",
          "field": "ThirdECRefreshTokenExpireTime",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "刷新令牌过期时间",
          "description": "刷新令牌过期时间"
        },
        {
          "key": "",
          "field": "UploadFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=WaitUpload=等待上传,\n1=Uploaded=已上传",
          "need_index": "",
          "title": "上传标识",
          "description": "上传标识，主要用于PDD这种需要多多云进行多重部署时，本地修改后上传到多多云"
        },
        {
          "key": "",
          "field": "NeedDataFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoNeed=不需要获取数据,\n1=OnlyeEWaybill=只获取电子面单,\n2=OnlyBizData=只获取数据,\n3=NeedBizDataEWaybill=获取数据和面单",
          "need_index": "",
          "title": "数据获取标识",
          "description": "数据获取标识，主要用于特殊ThirdEC需求，如PDD，DY等"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "通用状态"
        },
        {
          "key": "",
          "field": "SOConfirmHour",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传最大时效",
          "description": "订单回传最大时效，如果有数据，则作为托底回传的最大时效"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "VendorOpenAPI",
      "sheet": "CWMMain",
      "title": "商户在云仓OPENAPI的账户",
      "fields": [
        {
          "key": "PK",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户编号",
          "description": "商户编号，奇门对接时，使用本字段"
        },
        {
          "key": "",
          "field": "AppId",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "AppId",
          "description": "AppId，OpenAPI系统中使用本字段"
        },
        {
          "key": "",
          "field": "AppSecretKey",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "AppSecretKey",
          "description": "AppSecretKey"
        },
        {
          "key": "",
          "field": "Version",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "版本",
          "description": "版本，默认是1.0"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "ServicesAuth",
          "type": "VARCHAR(800)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "权限",
          "description": "权限，默认是Vendor.*"
        }
      ]
    },
    {
      "name": "VendorThirdECShipCfg",
      "sheet": "CWMMain",
      "title": "第三方平台的电子面单配置，保存商户抖音、拼多多店铺配置的电子面单信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "平台店铺sysno",
          "description": "VendorThirdEC.SysNo"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID,冗余",
          "description": "电商平台ID，即订单来源ID：TB=淘宝 、TM=天猫 、JD=京东、DD=当当、PP=拍拍、YX=易讯、EBAY=ebay、QQ=QQ 网购、AMAZON=亚马逊、SN=苏宁、GM=国美、WPH=唯品会、JM=聚美、LF=乐蜂、MGJ=蘑菇街、JS=聚尚、PX=拍鞋、YT=银泰、YHD=1 号店、VANCL=凡客、YL=邮乐、YG=优购、1688=阿里巴巴、POS=POS 门店、MIA=蜜芽、GW=商家官网、CT=村淘、YJWD=云集微店、PDD=拼多多、DY=抖音、KS=快手、MJK=美即刻、OTHERS=其他"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeMSNSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流月结编号",
          "description": "物流月结编号"
        },
        {
          "key": "",
          "field": "BranchCode",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流网点",
          "description": "物流网点"
        },
        {
          "key": "",
          "field": "SendAddress",
          "type": "VARCHAR(2000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "发件地址",
          "description": "发件地址json"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "通用状态"
        },
        {
          "key": "",
          "field": "ShopId",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺id",
          "description": "视频号配置返回店铺id，全局唯一，一个店铺分配一个shop_id"
        },
        {
          "key": "",
          "field": "AcctId",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "电子面单账号id",
          "description": "视频号配置电子面单账号id，每绑定一个网点分配一个acct_id"
        },
        {
          "key": "",
          "field": "ActiveTemplateUrl",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送方式的模板URL",
          "description": "当前配送方式的默认打印模板URL"
        },
        {
          "key": "",
          "field": "CfgMemo",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账号标记",
          "description": "账号标记，标记是哪个公司月结号下的快递"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ParamConfig",
      "sheet": "CWMMain",
      "title": "云仓平台参数表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ParamGroupType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Whs=仓库,\n1=Vendor=商户",
          "need_index": "Y",
          "title": "参数组分类",
          "description": "参数组分类，仓库、商户的参数配置，后续可根据需求增加其他枚举值"
        },
        {
          "key": "",
          "field": "ParamGroupID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "参数组ID",
          "description": "参数组ID"
        },
        {
          "key": "",
          "field": "ParamGroupName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数组名称",
          "description": "参数组名称"
        },
        {
          "key": "",
          "field": "ParamName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数名称",
          "description": "参数名称"
        },
        {
          "key": "",
          "field": "ParamKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "参数Key",
          "description": "参数Key"
        },
        {
          "key": "",
          "field": "ParamValueType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=IsString=字符串,\n1=IsNumber=数字,\n2=IsTime=时间,\n3=Array=数组",
          "need_index": "Y",
          "title": "参数值类型",
          "description": "参数值类型"
        },
        {
          "key": "",
          "field": "ParamValueScope",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数值范围",
          "description": "参数值范围，根据参数值类型配置，这里是自定义的一套规则\n字符串配置：长度范围{2，10}或枚举名称\n数字配置：大小范围{0，30}或枚举名称CommonYN\n时间：配置 Date/Time/DateTime\n数组：多选枚举名称的Assembly全名,如CWM.Entity.CommonYN,CWM.Entity"
        },
        {
          "key": "",
          "field": "ParamValue",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "0",
          "need_index": "",
          "title": "参数值",
          "description": "默认参数值"
        },
        {
          "key": "",
          "field": "MustInput",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "是否必填",
          "description": "是否必填"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明",
          "description": "说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WHSVendorThirdECShipCfg",
      "sheet": "CWMMain",
      "title": "仓库第三方平台的电子面单配置，配置有效的电子面单",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台sysno",
          "description": "VendorThirdEC.SysNo"
        },
        {
          "key": "",
          "field": "ThirdECShipCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "第三方平台的电子面单配置SysNo",
          "description": "第三方平台的电子面单配置SysNo"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WHSVendor_UseThirdECShipCfg",
      "sheet": "CWMMain",
      "title": "仓库第三方平台的电子面单使用配置，配置店铺使用的配置（自身或其他店铺的）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台sysno",
          "description": "VendorThirdEC.SysNo"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "UseThirdECShipCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "使用的第三方平台的电子面单配置SysNo",
          "description": "使用的第三方平台的电子面单配置SysNo，可以是其他店铺的（菜鸟、抖音）"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "Company",
      "sheet": "CWMMain",
      "title": "WMS商户的企业",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "CompanyName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业名称",
          "description": "企业名称"
        },
        {
          "key": "",
          "field": "CompanyId",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "组织机构代码",
          "description": "组织机构代码"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Yes=有效,\n0=No=无效",
          "need_index": "",
          "title": "状态",
          "description": "无效"
        },
        {
          "key": "",
          "field": "SortIndex",
          "type": "int",
          "required": "NOT NULL",
          "default": "9999",
          "remark": "",
          "need_index": "",
          "title": "排序顺序",
          "description": "排序顺序"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "CompanyContacter",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系人",
          "description": "联系人"
        },
        {
          "key": "",
          "field": "CompanyPhone",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "CompanyEmail",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Email",
          "description": "Email"
        },
        {
          "key": "",
          "field": "CompanyAdress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "地址",
          "description": "地址"
        },
        {
          "key": "",
          "field": "CompanyZipcode",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "邮编",
          "description": "邮编"
        },
        {
          "key": "",
          "field": "DeliveryMethod",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=WHS=云仓发货,\n1=OMS=OMS打单发货",
          "need_index": "",
          "title": "发货方式",
          "description": "发货方式"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "CompanyUser",
      "sheet": "CWMMain",
      "title": "企业用户",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "企业ID",
          "description": "企业ID"
        },
        {
          "key": "",
          "field": "UserId",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "用户Id",
          "description": "用户Id"
        },
        {
          "key": "",
          "field": "UserName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户名",
          "description": "用户名"
        },
        {
          "key": "",
          "field": "Pwd",
          "type": "VARCHAR(64)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "密码",
          "description": "密码"
        },
        {
          "key": "",
          "field": "PasswordSalt",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "盐值",
          "description": "盐值"
        },
        {
          "key": "",
          "field": "Phone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "手机",
          "description": "手机"
        },
        {
          "key": "",
          "field": "Email",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "邮箱",
          "description": "邮箱"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "IsAdmin",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否为默认管理员",
          "description": "是否为默认管理员"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "LastLoginTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后登录时间",
          "description": "最后登录时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "修改人"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "CompanyUserVendor",
      "sheet": "CWMMain",
      "title": "企业用户商户，一个用户只管理一部分商户时配置此表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "企业ID",
          "description": "企业ID"
        },
        {
          "key": "",
          "field": "CompanyUserSysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "企业用户编号",
          "description": "企业用户编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        }
      ]
    },
    {
      "name": "CompanyRole",
      "sheet": "CWMMain",
      "title": "角色表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "企业ID",
          "description": "企业ID"
        },
        {
          "key": "",
          "field": "RoleName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "角色名称",
          "description": "角色名称"
        },
        {
          "key": "",
          "field": "Note",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "IsGovernor",
          "type": "INT",
          "required": "NUll",
          "default": "0",
          "remark": "1=Is=主管,\n0=No=员工",
          "need_index": "",
          "title": "是否主管",
          "description": "是否主管"
        },
        {
          "key": "",
          "field": "Underling",
          "type": "VARCHAR(40)",
          "required": "NUll",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "绑定下属角色",
          "description": "绑定下属角色"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "CompanyFunction",
      "sheet": "CWMMain",
      "title": "企业权限表，平台初始化",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "AppID",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统ID",
          "description": "应用系统ID"
        },
        {
          "key": "",
          "field": "TreeCode",
          "type": "VARCHAR(60)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "树级编码",
          "description": "TreeCode,2位一级"
        },
        {
          "key": "",
          "field": "FunctionKey",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "权限Key",
          "description": "权限Key"
        },
        {
          "key": "",
          "field": "FunctionName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "权限名称",
          "description": "权限名称"
        },
        {
          "key": "",
          "field": "MenuIcon",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "菜单图标",
          "description": "菜单图标"
        },
        {
          "key": "",
          "field": "IsMenu",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否为菜单",
          "description": "是否为菜单，1=菜单，0=不是菜单"
        },
        {
          "key": "",
          "field": "MenuUrl",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "导航地址",
          "description": "导航地址，点击后连接地址，主要是针对菜单"
        },
        {
          "key": "",
          "field": "Note",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "CompanyRoleFunction",
      "sheet": "CWMMain",
      "title": "企业角色权限表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "RoleSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "FunctionSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "CompanyRoleUser",
      "sheet": "CWMMain",
      "title": "企业角色用户表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "RoleSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "角色编号",
          "description": "角色编号"
        },
        {
          "key": "",
          "field": "UserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "用户编号",
          "description": "用户编号"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WorkerCompanyUser",
      "sheet": "CWMMain",
      "title": "劳务公司用户",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "UserId",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "用户Id",
          "description": "用户Id"
        },
        {
          "key": "",
          "field": "UserName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户名",
          "description": "用户名"
        },
        {
          "key": "",
          "field": "Pwd",
          "type": "VARCHAR(64)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "密码",
          "description": "密码"
        },
        {
          "key": "",
          "field": "PasswordSalt",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "盐值",
          "description": "盐值"
        },
        {
          "key": "",
          "field": "Phone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "手机",
          "description": "手机"
        },
        {
          "key": "",
          "field": "Email",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "邮箱",
          "description": "邮箱"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "IsAdmin",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否为默认管理员",
          "description": "是否为默认管理员"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "LastLoginTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后登录时间",
          "description": "最后登录时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "修改人"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "WorkerCompanyUser_WHS",
      "sheet": "CWMMain",
      "title": "劳务公司用户关联仓库劳务公司",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WCUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "用户编号",
          "description": "用户编号"
        },
        {
          "key": "",
          "field": "WorkerCompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "劳务公司编号",
          "description": "劳务公司编号"
        },
        {
          "key": "",
          "field": "IsDefault",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否是默认仓库",
          "description": "是否是默认仓库，0=非，1是"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WOCategory",
      "sheet": "CWMMain",
      "title": "工单类型",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WOCategoryID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "分类编码",
          "description": "分类编码，两位一级，暂定2级\n1001=SO发起物流拦截\n1002=SO顾客拒收退件\n1003=SO物流停滞或退回\n1004=SO物流虚假签收\n1005=SO货品破损少件\n1006=SO货品错漏发件\n2001=BO货品破损少件\n2002=BO货品错漏发件"
        },
        {
          "key": "",
          "field": "ParentWOCategoryID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "分类父编码",
          "description": "分类父编码"
        },
        {
          "key": "",
          "field": "CategoryName",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "分类名称",
          "description": "分类名称"
        },
        {
          "key": "",
          "field": "MessageKeyword",
          "type": "VARCHAR(2000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "消息关键字",
          "description": "消息关键字"
        },
        {
          "key": "",
          "field": "Desc",
          "type": "NVARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "分类说明",
          "description": "分类说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "通用状态"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=不绑定优先级,\n1=低,\n2=中,\n3=高,",
          "need_index": "",
          "title": "优先级",
          "description": "用于客服内部人员评估工单紧急情况"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WOCategoryResultCfg",
      "sheet": "CWMMain",
      "title": "工单类型处理结果配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WOCategoryID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "分类编码",
          "description": "第二级的分类编码"
        },
        {
          "key": "",
          "field": "HandleResult",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Signed=顾客已签收,\n2=BackToStock=已退回仓库,\n3=BackDamage=退回仓库有损,\n4=NotBackToStock=未退回仓库记丢件,\n5=BackToStockLose=退回仓库后丢失,\n6=ReSend=补发,\n7=Compensate=赔付客户,\n8 =NoDuty=仓库无责",
          "need_index": "",
          "title": "工单处理结果",
          "description": "工单处理结果"
        },
        {
          "key": "",
          "field": "CompensateDuty",
          "type": "int",
          "required": "null",
          "default": "",
          "remark": "0=NoDuty=无须赔付,\n1=ExpressDuty=快递赔付,\n2=StockDuty=仓库赔付",
          "need_index": "Y",
          "title": "赔付责任",
          "description": "根据工单类型和处理结果确定赔付责任"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WOCategoryInfoTemplate",
      "sheet": "CWMMain",
      "title": "工单类型内容模板",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WOCategoryID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "分类编码",
          "description": "第二级的分类编码"
        },
        {
          "key": "",
          "field": "InfoTemplate",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "内容模板",
          "description": "内容模板"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "通用状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WOResult",
      "sheet": "CWMMain",
      "title": "工单处理结果字典表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ResultName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工单处理结果",
          "description": "工单处理结果"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "AreaTemperature",
      "sheet": "CWMMain",
      "title": "地区温度，每日定时系统自动更新",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "Province",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "发货省名",
          "description": "发货省名"
        },
        {
          "key": "",
          "field": "City",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "发货城市",
          "description": "发货城市"
        },
        {
          "key": "",
          "field": "RecordDate",
          "type": "DATE",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "当日日期",
          "description": "当日日期"
        },
        {
          "key": "",
          "field": "Temperature",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当日温度",
          "description": "当日温度"
        },
        {
          "key": "",
          "field": "Temperature1",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "次日温度",
          "description": "次日温度"
        },
        {
          "key": "",
          "field": "Temperature2",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "后日温度",
          "description": "后日温度"
        },
        {
          "key": "",
          "field": "Temperature3",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "大后日温度",
          "description": "大后日温度"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "更新时间",
          "description": "更新时间"
        }
      ]
    },
    {
      "name": "ThirdPartyBoardInfo",
      "sheet": "CWMMain",
      "title": "第三方平台信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "第三方平台ID",
          "description": "第三方平台ID"
        },
        {
          "key": "",
          "field": "AppId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "相关ID",
          "description": "相关ID"
        },
        {
          "key": "",
          "field": "SecretKey",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "相关密钥",
          "description": "相关密钥"
        },
        {
          "key": "",
          "field": "AgoEncodingAESKey",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "(前一次)加解密key",
          "description": "(前一次)加解密key"
        },
        {
          "key": "",
          "field": "EncodingAESKey",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "加解密key",
          "description": "加解密key"
        },
        {
          "key": "",
          "field": "ComponentVerifyTicket",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "视频号Ticket 内容",
          "description": "视频号Ticket 内容"
        },
        {
          "key": "",
          "field": "AccessToken",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "access_token",
          "description": "access_token"
        },
        {
          "key": "",
          "field": "TokenExpiresIn",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "有效期",
          "description": "access_token有效期"
        },
        {
          "key": "",
          "field": "PreAuthCode",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预授权码",
          "description": "预授权码"
        },
        {
          "key": "",
          "field": "CodeExpiresIn",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预授权码有效期",
          "description": "预授权码有效期"
        },
        {
          "key": "",
          "field": "ParameterJson",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "相关参数json",
          "description": "相关参数json"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "更新时间",
          "description": "更新时间"
        }
      ]
    },
    {
      "name": "DOMaster",
      "sheet": "CWMMain",
      "title": "数据对象",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "DOName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数据对象名称",
          "description": "数据对象名称"
        },
        {
          "key": "",
          "field": "DOCategory",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Product=商品数据,\n2=ProductBatch=商品批号,\n11=PO=入库单数据,\n21=SO=订单数据,\n22=BO=BO出库单数据,\n23=SPO=加工单,\n61=RO=退货单数据,\n81=VAS=增值服务,\n101=VendorBill=商户账单,\n111=ShipBill=快递账单,\n112=PCMBill=物料账单,\n113=HumanBill=人力账单",
          "need_index": "Y",
          "title": "数据类别",
          "description": "数据类别"
        },
        {
          "key": "",
          "field": "DOKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据对象Key",
          "description": "数据对象Key，唯一，用于代码中使用时指定哪个数据对象，建议格式：DOCategoryName_具体说明，比如SO_Standard表示订单标准数据对象，SO_WaybillInput表示订单的运单导入数据对象"
        },
        {
          "key": "",
          "field": "DODesc",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数据对象说明",
          "description": "数据对象说明"
        },
        {
          "key": "",
          "field": "DODataClass",
          "type": "VARCHAR(300)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数据对象类",
          "description": "数据对象类，\"namespace.class,assambly\" 的方式，用于反射赋值"
        },
        {
          "key": "",
          "field": "DOImportMethod",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "导入数据的方法",
          "description": "最终导入数据的方法，\"namespace.class.method,assambly\" 的方式，用于反射执行"
        },
        {
          "key": "",
          "field": "DOPerImportCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "100000",
          "remark": "",
          "need_index": "",
          "title": "每次导入条数",
          "description": "每次最多导入条数，全部解析完后，调导入数据方法执行，每次取多少条数据导入"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "DOField",
      "sheet": "CWMMain",
      "title": "数据对象字段",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "DOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据对象编号",
          "description": "数据对象编号"
        },
        {
          "key": "",
          "field": "DOFieldKey",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "字段Key",
          "description": "字段Key,对应数据对象的属性名"
        },
        {
          "key": "",
          "field": "DOFieldName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "字段名称",
          "description": "字段名称，数据对象的属性中文名称"
        },
        {
          "key": "",
          "field": "DOFieldDataType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=String=字符串,\n1=Int=整数,\n2=Decimal=浮点数,\n3=DateTime=时间",
          "need_index": "",
          "title": "字段类型",
          "description": "字段类型：0=字符串，1=整数，2=浮点数，3=时间，如果是对象或者数组，请按字符串导入后自行处理"
        },
        {
          "key": "",
          "field": "ImportSource",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=FromExcel=来源Excel,\n1=FromSystem=来源系统",
          "need_index": "",
          "title": "数据来源",
          "description": "数据来源，0=来源Excel，1=来源于系统"
        },
        {
          "key": "",
          "field": "FromSystemParam",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "1=WHSId=仓库,\n2=Vendor=商户,\n3=ThirdEC=电商平台",
          "need_index": "",
          "title": "系统参数",
          "description": "系统参数，当数据来源于系统时，需要的选择的系统参数列表，以List<KeyValuePair<object,string>>的方式返回，根据需要不断枚举实现。"
        },
        {
          "key": "",
          "field": "FieldValueVerify",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "字段值校验",
          "description": "字段值校验，预留，以后可以考虑正则表达式校验，微服务校验，函数校验等。"
        },
        {
          "key": "",
          "field": "MustInput",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "是否必填",
          "description": "是否必填"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明",
          "description": "说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "DOEMapping",
      "sheet": "CWMMain",
      "title": "数据对象与EXCEL文件的映射模板",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "MappingName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "映射模板名称",
          "description": "映射模板名称"
        },
        {
          "key": "",
          "field": "MappingDesc",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "映射说明",
          "description": "映射说明"
        },
        {
          "key": "",
          "field": "DOKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据对象Key",
          "description": "数据对象Key"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明",
          "description": "说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "DOEMappingField",
      "sheet": "CWMMain",
      "title": "数据对象字段与EXCEL文件列的映射关系",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "MappingSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "映射主表编号",
          "description": "映射主表编号"
        },
        {
          "key": "",
          "field": "ExcelColName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Excel列名",
          "description": "Excel列名"
        },
        {
          "key": "",
          "field": "DOFieldSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "数据字段编号",
          "description": "数据字段编号"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "DOEParseLog",
      "sheet": "CWMMain",
      "title": "Excel解析数据文件记录，一个Sheet一条记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "FileKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "已上传文件Key",
          "description": "已上传文件Key，代表文件ID；文件上传后，定义号FileKey(GUID)，写入本表"
        },
        {
          "key": "",
          "field": "DOKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据对象Key",
          "description": "数据对象Key"
        },
        {
          "key": "",
          "field": "TotalRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "数据总行数",
          "description": "数据总行数"
        },
        {
          "key": "",
          "field": "ParseCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "解析数量",
          "description": "已解析数量"
        },
        {
          "key": "",
          "field": "ParseStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态,\n10=Mappinged=已映射待解析,\n50=OnParsing=文件数据解析中,\n100=Completed=解析完成",
          "need_index": "",
          "title": "处理状态",
          "description": "处理状态"
        },
        {
          "key": "",
          "field": "ProcessDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理过程描述",
          "description": "处理过程描述"
        },
        {
          "key": "",
          "field": "ExcelFileName",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Excel文件名",
          "description": "Excel文件名，包含其相对路径"
        },
        {
          "key": "",
          "field": "ExcelSheetName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Sheet名",
          "description": "Sheet名"
        },
        {
          "key": "",
          "field": "MappingSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "映射模板编号",
          "description": "映射模板主表编号"
        },
        {
          "key": "",
          "field": "MappingFieldJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数据映射详细",
          "description": "数据映射详细信息，List<DOEMappingField> 的Json格式保存"
        },
        {
          "key": "",
          "field": "SampleDataJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Excel样本数据",
          "description": "Excel样本数据,List<IDictionary<string, object>> Json格式保存"
        },
        {
          "key": "",
          "field": "SystemParamValueJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统参数及值数据",
          "description": "系统参数及值数据：来源于系统参数以及选择的值的列表序列化后List<KeyValue> Json保存"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PrintTemplateGroup",
      "sheet": "CWMMain",
      "title": "打印模板分组",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TemplateType",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=StaPrint=标准打印,\n2=PagePrint=页面打印",
          "need_index": "Y",
          "title": "打印模板类型",
          "description": "打印模板类型"
        },
        {
          "key": "",
          "field": "GroupName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模板分组名称",
          "description": "模板分组名称"
        },
        {
          "key": "",
          "field": "GroupKey",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模板分组Key",
          "description": "模板分组Key"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "PrintTemplateField",
      "sheet": "CWMMain",
      "title": "打印模板字段",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "PrintTemplateGroupSysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "打印模板分组编号",
          "description": "打印模板分组编号"
        },
        {
          "key": "",
          "field": "FieldName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "字段名称",
          "description": "字段显示名称"
        },
        {
          "key": "",
          "field": "FieldKey",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "字段Key",
          "description": "字段Key"
        },
        {
          "key": "",
          "field": "RelFieldKey",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "关联字段Key",
          "description": "关联字段Key,字段类型为图片时，为图片数据源字段Key"
        },
        {
          "key": "",
          "field": "FieldType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=String=文本,\n2=BarImage=条码图片,\n3=QRImage=二维码图片",
          "need_index": "Y",
          "title": "字段类型",
          "description": "字段类型"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "PrintTemplateDesign",
      "sheet": "CWMMain",
      "title": "打印模板设计",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID,系统内置可以为空，所有仓库都能看到"
        },
        {
          "key": "",
          "field": "TemplateType",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=StaPrint=标准打印,\n2=PagePrint=页面打印",
          "need_index": "Y",
          "title": "打印模板类型",
          "description": "打印模板类型"
        },
        {
          "key": "",
          "field": "PrintTemplateGroupSysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "打印模板分组编号",
          "description": "打印模板分组编号"
        },
        {
          "key": "",
          "field": "TemplateName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模板名称",
          "description": "模板名称"
        },
        {
          "key": "",
          "field": "TemplateFields",
          "type": "VARCHAR(2000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模板字段清单",
          "description": "模板字段清单"
        },
        {
          "key": "",
          "field": "TemplateDetail",
          "type": "TEXT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模板内容",
          "description": "模板内容"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "HelpCategory",
      "sheet": "CWMMain",
      "title": "帮助类别",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TreeCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "树级编码",
          "description": "树级编码"
        },
        {
          "key": "",
          "field": "CategoryName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "类别名称",
          "description": "类别名称"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "排序号",
          "description": "排序号，1-5，数字越小越靠前"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "HelpMaster",
      "sheet": "CWMMain",
      "title": "帮助说明",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "CategorySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "帮助类别编号",
          "description": "帮助类别编号"
        },
        {
          "key": "",
          "field": "HelpTitle",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明标题",
          "description": "说明标题"
        },
        {
          "key": "",
          "field": "HelpContent",
          "type": "TEXT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明内容",
          "description": "说明内容"
        },
        {
          "key": "",
          "field": "HelpSample",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "示例内容",
          "description": "示例内容"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "排序号",
          "description": "排序号，1-5，数字越小越靠前"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ValueAddServiceCategory",
      "sheet": "CWMMain",
      "title": "增值服务类型",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "CategoryName",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "类别名称",
          "description": "类别名称"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "排序号",
          "description": "排序号，数字越小越靠前"
        },
        {
          "key": "",
          "field": "ShowFields",
          "type": "VARCHAR(1000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "显示字段",
          "description": "显示字段"
        },
        {
          "key": "",
          "field": "MustInputFields",
          "type": "VARCHAR(1000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "必填字段",
          "description": "必填字段"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "FeishuUser",
      "sheet": "CWMMain",
      "title": "飞书用户数据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "AuthUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "云仓用户编号",
          "description": "云仓用户编号，如果未绑定则为0"
        },
        {
          "key": "",
          "field": "user_id",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "飞书用户Id",
          "description": "飞书用户Id，字段权限要求：获取用户 user ID,仅自建应用"
        },
        {
          "key": "",
          "field": "name",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户姓名",
          "description": "用户姓名"
        },
        {
          "key": "",
          "field": "en_name",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户英文名",
          "description": "用户英文名"
        },
        {
          "key": "",
          "field": "avatar_url",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "头像url",
          "description": "头像url"
        },
        {
          "key": "",
          "field": "employee_id",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "雇员ID",
          "description": "雇员ID，飞书中的雇员ID"
        },
        {
          "key": "",
          "field": "employee_no",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "雇员工号",
          "description": "雇员工号"
        },
        {
          "key": "",
          "field": "employee_type",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "员工类型",
          "description": "员工类型:1：正式，2：实习，3：顾问，4：外包，5：劳务"
        },
        {
          "key": "",
          "field": "open_id",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "应用内的用户Id",
          "description": "应用内的用户Id，用户在应用内的唯一标识"
        },
        {
          "key": "",
          "field": "union_id",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ISV用户Id",
          "description": "ISV用户Id，用户对ISV的唯一标识，对于同一个ISV，用户在其名下所有应用的union_id相同"
        },
        {
          "key": "",
          "field": "tenant_key",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前企业标识",
          "description": "当前企业标识Key"
        },
        {
          "key": "",
          "field": "mobile",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "手机号",
          "description": "手机号"
        },
        {
          "key": "",
          "field": "email",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户邮箱",
          "description": "用户邮箱"
        },
        {
          "key": "",
          "field": "enterprise_email",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业邮箱",
          "description": "企业邮箱，请先确保已在管理后台启用飞书邮箱服务"
        },
        {
          "key": "",
          "field": "status",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "状态",
          "description": "状态：1：待入职，2：在职，3：已取消入职，4：待离职，5：已离职"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "AccessToken",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "访问Token",
          "description": "访问Token"
        },
        {
          "key": "",
          "field": "RefreshToken",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "刷新Token",
          "description": "刷新Token"
        },
        {
          "key": "",
          "field": "AccessTokenExpire",
          "type": "DATETIME",
          "required": "NULL",
          "default": "'2022-01-01'",
          "remark": "",
          "need_index": "",
          "title": "访问Token过期时间",
          "description": "访问Token过期时间"
        },
        {
          "key": "",
          "field": "RefreshTokenExpire",
          "type": "DATETIME",
          "required": "NULL",
          "default": "'2022-01-01'",
          "remark": "",
          "need_index": "",
          "title": "刷新Token过期时间",
          "description": "刷新Token过期时间"
        },
        {
          "key": "",
          "field": "BelongDepartmentId",
          "type": "VARCHAR(40)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "飞书上所属部门",
          "description": "飞书上具体的部门ID"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "修改人"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "FeishuClockLog",
      "sheet": "CWMMain",
      "title": "飞书打卡原始记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "event_id",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "事件 ID",
          "description": "事件 ID"
        },
        {
          "key": "",
          "field": "event_type",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "事件类型",
          "description": "事件类型"
        },
        {
          "key": "",
          "field": "app_id",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "应用 ID",
          "description": "应用 ID"
        },
        {
          "key": "",
          "field": "tenant_key",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "租户 Key",
          "description": "租户 Key"
        },
        {
          "key": "",
          "field": "employee_id",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "员工ID",
          "description": "员工ID，对应飞书的user_id"
        },
        {
          "key": "",
          "field": "employee_no",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "员工工号",
          "description": "员工工号，飞书人事企业版时，对应飞书user_id"
        },
        {
          "key": "",
          "field": "location_name",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "打卡位置",
          "description": "打卡位置"
        },
        {
          "key": "",
          "field": "check_time",
          "type": "DATETime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "打卡时间",
          "description": "打卡时间"
        },
        {
          "key": "",
          "field": "comment",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "打卡备注",
          "description": "打卡备注"
        },
        {
          "key": "",
          "field": "is_field",
          "type": "bool",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "是否外勤打卡",
          "description": "是否外勤打卡"
        },
        {
          "key": "",
          "field": "is_wifi",
          "type": "bool",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "是否wifi打卡",
          "description": "是否wifi打卡"
        },
        {
          "key": "",
          "field": "type",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "记录生成方式",
          "description": "记录生成方式，可用值：【0（用户自己打卡），1（管理员修改），2（用户补卡），3（系统自动生成），4（下班免打卡），5（考勤机打卡），6（极速打卡），7（考勤开放平台导入）】"
        },
        {
          "key": "",
          "field": "risk_result",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "疑似作弊打卡行为",
          "description": "疑似作弊打卡行为，0：无疑似作弊，1： 疑似使用作弊软件，2：疑似使用他人的设备打卡，3：疑似多人使用同一设备打卡"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "日志日期",
          "description": "日志日期"
        },
        {
          "key": "",
          "field": "ProcessStatus",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "0=Init=待处理,\n4=Failure=处理失败,\n100=Completed=已处理",
          "need_index": "",
          "title": "处理状态",
          "description": "处理状态，0=初始态未处理，4=处理失败,100=已处理，即已计算好更新到cwmmaster.workerRecordLog表中"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "SystemRpt",
      "sheet": "CWMMain",
      "title": "系统标准报表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "SystemRptType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "报表类型",
          "description": "报表类型"
        },
        {
          "key": "",
          "field": "RptGroupName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "报表组名",
          "description": "报表组名"
        },
        {
          "key": "",
          "field": "RptName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "报表名",
          "description": "报表名"
        },
        {
          "key": "",
          "field": "RptDesc",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "报表描述",
          "description": "报表描述"
        },
        {
          "key": "",
          "field": "RptUrl",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "报表地址",
          "description": "报表地址"
        },
        {
          "key": "",
          "field": "FunctionKey",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "权限Key",
          "description": "权限Key"
        },
        {
          "key": "",
          "field": "ExecuteFunction",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "执行的Action",
          "description": "执行的Action"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "序号",
          "description": "序号"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WHSVendorMapping",
      "sheet": "CWMMain",
      "title": "仓库商户映射表，将ERP的多个商户映射到WMS的一个商户或 一个仓库映射到其他仓库",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Vendor的SysNo",
          "description": "Vendor的SysNo"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数据来源",
          "description": "数据来源。Qimen、OpenAPI"
        },
        {
          "key": "",
          "field": "OwnerCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "对接货主编号",
          "description": "对接货主编号"
        },
        {
          "key": "",
          "field": "CustomerId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "对接CustomerId",
          "description": "对接CustomerId"
        },
        {
          "key": "",
          "field": "ERPWHSId",
          "type": "CHAR(10)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ERP传的WHSId",
          "description": "ERP传的WHSId,同时用于回传,可与WMSWHSId不同，实现ERP无感切仓"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ChargeItem",
      "sheet": "CWMMain",
      "title": "仓库服务计费项，全平台基础字典",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(100,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ChargeItemName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计费项目",
          "description": "计费项目"
        },
        {
          "key": "",
          "field": "SortCode",
          "type": "VARCHAR(6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "排列顺序",
          "description": "排列顺序，从小到大"
        },
        {
          "key": "",
          "field": "ChargeItemUnit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Money=元,\n3=BaseSOShipFeePercent=发货运费%,\n13=StgYuanPerSMDay=元/平方米·天,\n14=StgYuanPerCMDay=元/立方米·天,\n15=StgYuanPerPalletDay=元/托·天,\n16=StgYuanPerPalletBox=元/盒·天,\n21=YuanPerOrder=元/单,\n22=YuanPerPiece=元/件,\n23=YuanPerBox=元/箱,\n24=YuanPerPallet=元/托,\n25=YuanPerCM=元/立方,\n26=YuanPerTon=元/吨,\n27=YuanPerCombo=元/套,\n28=YuanPerWorkHour=元/人·工时",
          "need_index": "",
          "title": "计费单位",
          "description": "计费单位；在手动填写增值服务时，如果计费单位是元，则直接填写金额，此时数量只是一个参考；如果不是元，需要填写数量，自动计算出金额。"
        },
        {
          "key": "",
          "field": "CalcFeeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=FixValue=固定值,\n2=DataCalc=按数据自动计算,\n9=VASFee=增值服务手动录入",
          "need_index": "",
          "title": "计费方式",
          "description": "计费方式，按发生数据计算为自动生成账单数据,增值服务是需要库内人员手工记录数据"
        },
        {
          "key": "",
          "field": "SpecailFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoSpecial=无特殊设置项,\n1=ExtendFlag=有扩展字段设置,\n2=PayConfirmFlag=需要支付确认,\n9=SpecialCharge=专业报价模块支持",
          "need_index": "",
          "title": "特殊设置",
          "description": "是否有特殊设置；有扩展字段设，需要设置(固化)：基础行数，基础件数，增量数，增量价格；如果需要支付确认，需要增加一个付款人点击确认的步骤"
        },
        {
          "key": "",
          "field": "ExtendParamsJson",
          "type": "VARCHAR(2000)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "扩展字段Json内容",
          "description": "扩展字段Json内容，Json为List<ParamConfig>的结构，比如订单发货-基础作业费需要包括超件设置，则需要把超件基础行数、超件基础件数、超件增量数、超件增量价格配置到本字段；比如仓储费-常温仓-按面积收费，需要配置托盘面积换算比、零拣面积换算比这两个扩展字段"
        },
        {
          "key": "",
          "field": "Desc",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "计费项说明",
          "description": "计算说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ChargeItem_Category",
      "sheet": "CWMMain",
      "title": "仓库服务项与业务分类的关联表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ChargeItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收费项编号",
          "description": "收费项编号"
        },
        {
          "key": "",
          "field": "ChargeItemCategory",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Storage=仓储,\n2=InStockPO=收货,\n3=InStockRM=销退,\n4=OutStockSO=订单,\n5=OutStockBO=2B单,\n6=InternalOpt=库内,\n99=Other=其它",
          "need_index": "Y",
          "title": "项目分类",
          "description": "项目分类"
        }
      ]
    },
    {
      "name": "ChargeItem_VASRecordParam",
      "sheet": "CWMMain",
      "title": "填写增值服务时，每个收费项需要填写的表单内容（表单项）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ChargeItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收费项编号",
          "description": "收费项编号"
        },
        {
          "key": "",
          "field": "ChargeItemCategory",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "项目分类",
          "description": "项目分类"
        },
        {
          "key": "",
          "field": "VASRecordParamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收费项编号",
          "description": "收费项编号"
        },
        {
          "key": "",
          "field": "MustInput",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "是否必填",
          "description": "是否必填"
        },
        {
          "key": "",
          "field": "SortNumber",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "排列顺序",
          "description": "排列顺序，从小到大"
        }
      ]
    },
    {
      "name": "VASRecordParam",
      "sheet": "CWMMain",
      "title": "填写增值服务时，所有增值服务填写字段的字典表，与增值服务记录表(cwmacct.VendorVASRecord)中的字段必须是对应的",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(100,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "FieldName",
          "type": "VARCHAR(40)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "字段名称",
          "description": "增值服务记录时，需要填写的字段名称，作为UI显示的Label"
        },
        {
          "key": "",
          "field": "FieldKey",
          "type": "VARCHAR(80)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "字段Key",
          "description": "增值服务记录时，对应的增值服务记录表的字段Key"
        },
        {
          "key": "",
          "field": "ParamValueType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=IsString=字符串,\n1=IsNumber=数字,\n2=IsTime=时间,\n3=Array=数组",
          "need_index": "Y",
          "title": "参数值类型",
          "description": "参数值类型"
        },
        {
          "key": "",
          "field": "ParamValueScope",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数值范围",
          "description": "参数值范围，根据参数值类型配置，这里是自定义的一套规则\n字符串配置：长度范围{2，10}或枚举名称\n数字配置：大小范围{0，30}或枚举名称CommonYN\n时间：配置 Date/Time/DateTime\n数组：多选枚举名称的Assembly全名,如CWM.Entity.CommonYN,CWM.Entity"
        },
        {
          "key": "",
          "field": "ParamDefaultValue",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "参数值",
          "description": "默认参数值"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明",
          "description": "说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "GaodeDistance",
      "sheet": "CWMMain",
      "title": "高德地图两个坐标(经纬度）之间的实际距离（km）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(100,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "Origins",
          "type": "VARCHAR(15)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "起点坐标：经度,维度",
          "description": "起点坐标：经度,维度"
        },
        {
          "key": "",
          "field": "Destinations",
          "type": "VARCHAR(15)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "终点坐标：经度,维度",
          "description": "终点坐标：经度,维度"
        },
        {
          "key": "",
          "field": "Strategy",
          "type": "INT",
          "required": "",
          "default": "32",
          "remark": "",
          "need_index": "",
          "title": "驾车算路策略",
          "description": "驾车算路策略;0：速度优先（只返回一条路线），此路线不一定距离最短,1：费用优先（只返回一条路线），不走收费路段，且耗时最少的路线,2：常规最快（只返回一条路线）综合距离/耗时规划结果,32：默认，高德推荐，同高德地图APP默认"
        },
        {
          "key": "",
          "field": "Distance",
          "type": "DOUBLE",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后使用时间",
          "description": "最后使用时间，备用，方便以后把很久没使用的数据可以物理删除"
        }
      ]
    },
    {
      "name": "WorkItem",
      "sheet": "CWMMain",
      "title": "字典：工作项目，系统初始化进去，各仓可以自行维护",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(100,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工作项目编号",
          "description": "工作项目编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "'W0'",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID，模版的WHSID为W0，为预设模板，其它仓库创建时引用模板，都是系统级，CustomFlag=0。"
        },
        {
          "key": "",
          "field": "WorkItemID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作项目ID",
          "description": "工作项目ID，系统级ID是预设的，对应不同的计算方法，手动添加只能添加工序计件，ID为GUID去除横线生成的，计算时类似增值服务计算。"
        },
        {
          "key": "",
          "field": "WorkItemName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作项目名称",
          "description": "工作项目名称"
        },
        {
          "key": "",
          "field": "WorkItemDesc",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工作项目说明",
          "description": "工作项目说明"
        },
        {
          "key": "",
          "field": "ProducePositionSalaryCalcType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=BasicWork=基础工作,\n1=StdAIPieceWork=标准计件,\n2=ProcessPieceWork=工序计件,\n3=TimedTicket=计时票,\n4=JobAllowance=岗位津贴,\n-1=NoUsed=不适用",
          "need_index": "",
          "title": "生产岗计酬方式",
          "description": "生产岗计酬方式，枚举SalaryCalcType"
        },
        {
          "key": "",
          "field": "AuxilianPositionSalaryCalcType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=BasicWork=基础工作,\n1=StdAIPieceWork=标准计件,\n2=ProcessPieceWork=工序计件,\n3=TimedTicket=计时票,\n4=JobAllowance=岗位津贴,\n-1=NoUsed=不适用",
          "need_index": "",
          "title": "辅助岗计酬方式",
          "description": "辅助岗计酬方式，枚举SalaryCalcType"
        },
        {
          "key": "",
          "field": "ManagePositionSalaryCalcType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=BasicWork=基础工作,\n1=StdAIPieceWork=标准计件,\n2=ProcessPieceWork=工序计件,\n3=TimedTicket=计时票,\n4=JobAllowance=岗位津贴,\n-1=NoUsed=不适用",
          "need_index": "",
          "title": "管理岗计酬方式",
          "description": "管理岗计酬方式，枚举SalaryCalcType"
        },
        {
          "key": "",
          "field": "TempPositionSalaryCalcType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=BasicWork=基础工作,\n1=StdAIPieceWork=标准计件,\n2=ProcessPieceWork=工序计件,\n3=TimedTicket=计时票,\n4=JobAllowance=岗位津贴,\n-1=NoUsed=不适用",
          "need_index": "",
          "title": "临时岗计酬方式",
          "description": "临时岗计酬方式，枚举SalaryCalcType"
        },
        {
          "key": "",
          "field": "PieceWorkUnit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Nothing=无,\n1=ByOrder=按单计件,\n2=ByTask=按任务计,\n3=ByProduct=按货品件数计,\n4=ByVolWeight=按体积重量计",
          "need_index": "",
          "title": "计件单位",
          "description": "计件单位，当计酬类型为计件时(标准计件和工序计件）才有意义"
        },
        {
          "key": "",
          "field": "SpecialSetFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Nothing=无,\n1=ManuWorkload=填报工作量,\n5=BindSORechecker=绑定复核员,\n10=BindPackageWorkBench=分配打包桌",
          "need_index": "Y",
          "title": "特殊数据设置",
          "description": "特殊数据设置"
        },
        {
          "key": "",
          "field": "WorkerAssignFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=AutoAssign=自动分配,\n1=ManuAssign=手动分配",
          "need_index": "Y",
          "title": "人员分配",
          "description": "人员分配方式，WMS系统中有作业数据的，为自动分配，比如拣货，复核等；没数据的为手动分配，比如纯打包"
        },
        {
          "key": "",
          "field": "CustomFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SystemCreate=初始化引入,\n1=WHSSelfCreate=仓库自建",
          "need_index": "Y",
          "title": "创建方式",
          "description": "创建方式"
        },
        {
          "key": "",
          "field": "Coefficient",
          "type": "DECIMAL(10,4)",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "计件系数",
          "description": "计件系数"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "LogMemo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "日志说明",
          "description": "日志说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "JobPosition",
      "sheet": "CWMMain",
      "title": "字典：工作岗位，共ProducePosition, AuxilianPosition, ManagePosition, TempPosition 4种岗位类型",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(100,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "'W0'",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID，模版的WHSID为W0，为预设模板，其它仓库创建时引用模板,只可设值，不可增减。"
        },
        {
          "key": "",
          "field": "JobPositionType",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "1=ProducePosition=生产岗,\n2=AuxilianPosition=辅助岗,\n3=ManagePosition=管理岗,\n9=TempPosition=临时岗",
          "need_index": "Y",
          "title": "岗位类型",
          "description": "岗位类型"
        },
        {
          "key": "",
          "field": "JobPositionName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "岗位名称",
          "description": "岗位名称"
        },
        {
          "key": "",
          "field": "JobPositionDesc",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "岗位描述",
          "description": "岗位描述"
        },
        {
          "key": "",
          "field": "CustomFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SystemCreate=初始化引入,\n1=WHSSelfCreate=仓库自建",
          "need_index": "Y",
          "title": "创建方式",
          "description": "创建方式"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "LogMemo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "日志说明",
          "description": "日志说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "SalaryCfgJobPosition",
      "sheet": "CWMMain",
      "title": "岗位的计薪项及金额-配置表，各仓库除了默认引用标准模板配置外，可以自己对自己定义的岗位，设置各种计薪、津贴、奖惩项。",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "'W0'",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID，模版的WHSID为W0，为预设模板，其它仓库创建时引用模板,只可设值，不可增减。"
        },
        {
          "key": "",
          "field": "JobPositionSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "岗位编号",
          "description": "岗位系统编号，为0表示与岗位无关"
        },
        {
          "key": "",
          "field": "SalaryItemType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=BasicSalary=基本薪资,\n10=PieceWorkHourSalary=计件换算时薪,  \n40=AllowanceDaySalary=特殊岗津贴日薪,\n42=AllowanceVendorCount=货主数量月津贴,\n43=AllowanceSellerScale=客户规模月津贴,\n80=MgtCommission=管理提成设置,\n91=RewardMgtSOQuality=发货质量奖惩,\n93=RewardMgtSODelay=发货超时奖惩, \n100=MiniumSalary=保底工资",
          "need_index": "Y",
          "title": "计薪项",
          "description": "计薪项"
        },
        {
          "key": "",
          "field": "SalaryItemMode",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=DirectValue=直接填写金额,\n8=CfgCommission=组长提成配置,\n11=CfgVendorCount=货主数量津贴配置,\n12=CfgSOCount=客户规模津贴配置,\n21=CfgQuantityReward=发货质量奖惩配置,\n22=CfgTimeOutReward=发货超时奖惩配置",
          "need_index": "Y",
          "title": "计酬设置模式",
          "description": "计酬设置模式"
        },
        {
          "key": "",
          "field": "SalaryItemAmount",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计酬项金额",
          "description": "计酬项金额"
        },
        {
          "key": "",
          "field": "SalaryItemCfgJson",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计酬项配置",
          "description": "计酬项配置，用于“达标奖励、管理提成设置、盘点质量的奖惩”\n[{\"MinLabel\":\"工人计件提成大于\",\"MinValue\":25, \n\"MaxLabel\":\"小于等于\",\"MaxValue\":999,\n\"ResultLabel\":\"提成金额\",\"ResultValue\":0.1}]"
        },
        {
          "key": "",
          "field": "CustomFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SystemCreate=初始化引入,\n1=WHSSelfCreate=仓库自建",
          "need_index": "Y",
          "title": "创建方式",
          "description": "创建方式"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "LogMemo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "日志说明",
          "description": "日志说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "SalaryCfgProcessPieceWork",
      "sheet": "CWMMain",
      "title": "工序计件的计薪及金额-配置表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "'W0'",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID，模版的WHSID为W0，为预设模板，其它仓库创建时引用模板,只可设值，不可增减。"
        },
        {
          "key": "",
          "field": "AssignMode",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=FullWarehouse=全仓默认,\n1=AssignSellerCompany=指定客户,\n2=AssignVendor=指定货主",
          "need_index": "Y",
          "title": "指定方式",
          "description": "指定方式"
        },
        {
          "key": "",
          "field": "WorkItemID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作项目ID",
          "description": "工作项目ID，系统级ID是预设的，对应不同的计算方法，手动添加只能添加工序计件，ID为GUID去除横线生成的，计算时类似增值服务计算。"
        },
        {
          "key": "",
          "field": "VASChargeItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "增值服务收费项编号",
          "description": "增值服务收费项编号，当计酬类型为工序计件时才有值"
        },
        {
          "key": "",
          "field": "UnitWorkTimes",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "单位工序完成时长",
          "description": "单位工序完成时长，单位：秒"
        },
        {
          "key": "",
          "field": "UnitWorkSalaryPrice",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "单位工序价格",
          "description": "单位工序价格（计价单位与增值服务的计价单位一致），与完成时间相关"
        },
        {
          "key": "",
          "field": "VerifyDataJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "验证数据的JSON",
          "description": "验证数据的JSON"
        },
        {
          "key": "",
          "field": "CustomFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SystemCreate=初始化引入,\n1=WHSSelfCreate=仓库自建",
          "need_index": "Y",
          "title": "创建方式",
          "description": "创建方式"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "LogMemo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "日志说明",
          "description": "日志说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "SalaryCfgProcessPieceWorkAssign",
      "sheet": "CWMMain",
      "title": "工序计件的计薪及金额-配置指定客户或货主",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "SalaryCfgProcessPieceWorkSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "工序计件配置编号",
          "description": "工序计件配置编号"
        },
        {
          "key": "",
          "field": "SCSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "客户编号",
          "description": "客户编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "货主编号",
          "description": "货主编号"
        }
      ]
    },
    {
      "name": "WHSVendor",
      "sheet": "CWMMaster",
      "title": "分散于各CWMMaster中商户货主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Vendor的SysNo",
          "description": "Vendor的SysNo"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "企业编号",
          "description": "商户所属企业的系统编号，字典来源于主数据Main"
        },
        {
          "key": "",
          "field": "CompanyName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货主名称",
          "description": "企业名称"
        },
        {
          "key": "",
          "field": "CompanyCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货主代码",
          "description": "货主代码"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "CompanyContacter",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业联系人",
          "description": "企业联系人"
        },
        {
          "key": "",
          "field": "CompanyPhone",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业联系电话",
          "description": "企业联系电话"
        },
        {
          "key": "",
          "field": "CompanyEmail",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业Email",
          "description": "企业Email"
        },
        {
          "key": "",
          "field": "CompanyAdress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业地址",
          "description": "企业地址"
        },
        {
          "key": "",
          "field": "CompanyZipcode",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业邮编",
          "description": "企业邮编"
        },
        {
          "key": "",
          "field": "DefaultShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "企业默认物流ID",
          "description": "企业默认物流ID"
        },
        {
          "key": "",
          "field": "SOPriorShipTypeIds",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单优先物流",
          "description": "订单优先物流，多个用','分割"
        },
        {
          "key": "",
          "field": "SenderConfig",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "寄件人特殊配置",
          "description": "寄件人特殊配置"
        },
        {
          "key": "",
          "field": "ConfirmConfig",
          "type": "Text",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "对接回推配置",
          "description": "对接回推配置"
        },
        {
          "key": "",
          "field": "CutOffTime",
          "type": "varchar(8)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "截单时间",
          "description": "截单时间（18:00:00）"
        },
        {
          "key": "",
          "field": "ShipChangeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NotChange=不自动切换\n1=ChangeNotSOPrior=非订单优先物流自动切换\n2=AllChange=全部自动切换",
          "need_index": "",
          "title": "自动切换快递",
          "description": "自动切换快递"
        },
        {
          "key": "",
          "field": "QRCodeImgUrl",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收款二维码图片地址",
          "description": "收款二维码图片地址"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WHSShipType",
      "sheet": "CWMMaster",
      "title": "仓库的物流类型",
      "fields": [
        {
          "key": "PK",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "ShortName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流简称",
          "description": "物流简称"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "IsWaybillShip",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "是否为获取运单的快递",
          "description": "是否为获取运单的快递 1是 0否。"
        },
        {
          "key": "",
          "field": "NeedExchange",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Yes=是\n0=No=否",
          "need_index": "Y",
          "title": "是否需要对接",
          "description": "是否需要对接"
        },
        {
          "key": "",
          "field": "APIConfigContent",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "API配置内容",
          "description": "API配置内容Json，如：\n[{\"CfgLabel\":\"百世API地址\",\"CfgKey\":\"BestExUrl\",\"CfgValue\":\"http://****\"}\n {\"CfgLabel\":\"百世PartnerID\",\"CfgKey\":\"BestExPartnerID\",\"CfgValue\":\"***\"}\n {\"CfgLabel\":\"百世PartnerKey\",\"CfgKey\":\"BestExPartnerKey\",\"CfgValue\":\"***\"}\n {\"CfgLabel\":\"百世站点账户\",\"CfgKey\":\"BestExUserName\",\"CfgValue\":\"***\"}\n {\"CfgLabel\":\"百世站点密码\",\"CfgKey\":\"BestExUserName\",\"CfgValue\":\"***\"}]"
        },
        {
          "key": "",
          "field": "WaybillQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单量",
          "description": "单量"
        },
        {
          "key": "",
          "field": "StopGetWaybillTime",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "停止接单的时间",
          "description": "停止接单的时间 HH:mm 格式"
        },
        {
          "key": "",
          "field": "PTShipAndMSNCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "平台快递及MSN",
          "description": "平台快递及MSN，非标准平台快递，必须绑定"
        },
        {
          "key": "",
          "field": "ShipMark",
          "type": "CHAR(2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递面单上打印大标记",
          "description": "快递面单上打印大标记，最多2位"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "RouteCollectCfg",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "揽收配置",
          "description": "揽收配置"
        },
        {
          "key": "",
          "field": "APICollectFlag",
          "type": "TINYINT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "自动揽收标记",
          "description": "自动揽收标记，为1必须有揽收配置"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipCar",
      "sheet": "CWMMaster",
      "title": "物流装车维护（预留）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipCarName",
          "type": "VARCHAR(40)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆名称",
          "description": "车辆名称"
        },
        {
          "key": "",
          "field": "Volume",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "载货体积，立方米",
          "description": "载货体积，立方米"
        },
        {
          "key": "",
          "field": "Weight",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "载重，单位吨",
          "description": "重量，单位吨"
        },
        {
          "key": "",
          "field": "CarNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "车牌号",
          "description": "车牌号"
        },
        {
          "key": "",
          "field": "ContactName",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系人",
          "description": "联系人"
        },
        {
          "key": "",
          "field": "ContactPhone",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "Summary",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆说明",
          "description": "车辆说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "Category",
      "sheet": "CWMMaster",
      "title": "商品类别，最多为3级分类",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CategoryCode",
          "type": "CHAR(6)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "类别编码",
          "description": "类别编码，2位一级"
        },
        {
          "key": "",
          "field": "ParentCategoryCode",
          "type": "CHAR(6)",
          "required": "NOT NULL",
          "default": "'",
          "remark": "",
          "need_index": "Y",
          "title": "类别父编码",
          "description": "父编码"
        },
        {
          "key": "",
          "field": "IsLeaf",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "为末级节点",
          "description": "是否为末级节点"
        },
        {
          "key": "",
          "field": "Name",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "类别名称",
          "description": "名称"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "优先级",
          "description": "优先级，越小越高"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，通用状态，共两种：有效，无效，删除是将状态设置为-999"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "Brand",
      "sheet": "CWMMaster",
      "title": "商品品牌",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BrandName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "品牌名称",
          "description": "品牌名称"
        },
        {
          "key": "",
          "field": "FirstLetter",
          "type": "CHAR(1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "首字母",
          "description": "首字母"
        },
        {
          "key": "",
          "field": "Summary",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "品牌简述",
          "description": "简述"
        },
        {
          "key": "",
          "field": "DefaultImage",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "品牌图片",
          "description": "品牌默认图片"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，通用状态，共两种：有效，无效"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "Product",
      "sheet": "CWMMaster",
      "title": "商品SKU信息主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商家编号",
          "description": "商品所属商家系统编号"
        },
        {
          "key": "",
          "field": "TradeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=非保电商,\n1=FAT=跨境电商",
          "need_index": "Y",
          "title": "贸易类型",
          "description": "贸易类型"
        },
        {
          "key": "",
          "field": "ProductGroupID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "商品组ID",
          "description": "同一组的商品组ID"
        },
        {
          "key": "",
          "field": "ProductID",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "商品ID",
          "description": "商品ID"
        },
        {
          "key": "",
          "field": "SourceProductID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "商户源商品ID",
          "description": "商户源商品ID"
        },
        {
          "key": "",
          "field": "UPCCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "商品UPCCode",
          "description": "商品UPCCode，即商品条码"
        },
        {
          "key": "",
          "field": "CustomsRecordID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "商品备案ID",
          "description": "商品公服备案ID：如果是平台申报，则等于ProductID；如果是商户自行申报，则等于SourceProductId；"
        },
        {
          "key": "",
          "field": "CategorySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品类别编号",
          "description": "商品类别编号"
        },
        {
          "key": "",
          "field": "BrandSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "品牌编号",
          "description": "品牌编号"
        },
        {
          "key": "",
          "field": "BrandName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "品牌名称",
          "description": "品牌名称"
        },
        {
          "key": "",
          "field": "ProductName",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "SKU名称",
          "description": "SKU的名称"
        },
        {
          "key": "",
          "field": "ProductModel",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "SKU型号",
          "description": "SKU的型号"
        },
        {
          "key": "",
          "field": "ExpandModel",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "扩展属性",
          "description": "扩展属性"
        },
        {
          "key": "",
          "field": "ShortName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "简称",
          "description": "简称"
        },
        {
          "key": "",
          "field": "PackagingFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Origin=原箱,\n1=Box=组套周转箱,\n2=NoBox=组套无外箱",
          "need_index": "",
          "title": "包装方案",
          "description": "包装方案，主要用于加工单【已废弃】"
        },
        {
          "key": "",
          "field": "DefaultImage",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "默认图片",
          "description": "SKU默认图片"
        },
        {
          "key": "",
          "field": "Summary",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品简述",
          "description": "商品简述"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量【已废弃，迁移到ProductCartonSize】"
        },
        {
          "key": "",
          "field": "PalletPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "托规数量",
          "description": "托规数量，基于箱数【已废弃，迁移到ProductCartonSize】"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计数单位",
          "description": "计数单位"
        },
        {
          "key": "",
          "field": "Length",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "长，单位厘米",
          "description": "商品长，单位厘米"
        },
        {
          "key": "",
          "field": "Width",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "宽，单位厘米",
          "description": "商品宽，单位厘米"
        },
        {
          "key": "",
          "field": "Height",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "高，单位厘米",
          "description": "商品高，单位厘米"
        },
        {
          "key": "",
          "field": "Weight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量，单位克",
          "description": "重量，单位克"
        },
        {
          "key": "",
          "field": "BarCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包装箱码",
          "description": "包装箱码"
        },
        {
          "key": "",
          "field": "BoxLength",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长，单位厘米",
          "description": "整箱长，单位厘米【已废弃，迁移到ProductCartonSize】"
        },
        {
          "key": "",
          "field": "BoxWidth",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长宽，单位厘米",
          "description": "整箱宽，单位厘米【已废弃，迁移到ProductCartonSize】"
        },
        {
          "key": "",
          "field": "BoxHeight",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长高，单位厘米",
          "description": "整箱高，单位厘米【已废弃，迁移到ProductCartonSize】"
        },
        {
          "key": "",
          "field": "BoxWeight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长重量，单位克",
          "description": "整箱重量，单位克【已废弃，迁移到ProductCartonSize】"
        },
        {
          "key": "",
          "field": "BoxBarCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱外箱码",
          "description": "整箱外箱码【已废弃，迁移到ProductCartonSize】"
        },
        {
          "key": "",
          "field": "BoxCartonWeight",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "外纸箱重量",
          "description": "外纸箱重量，单位克【已废弃，迁移到ProductCartonSize】"
        },
        {
          "key": "",
          "field": "DurationPeriod",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "保质期",
          "description": "保质期 --结合保质期类型使用"
        },
        {
          "key": "",
          "field": "DurationPeriodType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Day=天,\n1=Month=月,\n2=Year=年",
          "need_index": "",
          "title": "保质期类型",
          "description": "保质期类型 --结合保质期使用"
        },
        {
          "key": "",
          "field": "NeedExpireDate",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "1= Actived = 是       \n0=DeActived = 否",
          "need_index": "",
          "title": "是否效期管理",
          "description": "是否效期管理（如果需要效期管理，那么必须设置保质期）"
        },
        {
          "key": "",
          "field": "OnlyBatchFlag",
          "type": "TINYINT",
          "required": "NULL",
          "default": "0",
          "remark": "1= Actived = 是       \n0=DeActived = 否",
          "need_index": "",
          "title": "是否批次管理",
          "description": "是否批次管理"
        },
        {
          "key": "",
          "field": "OriginationType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "1=FromProduceDate=自生产日期,\n2=ToExpireDate=至过期日期",
          "need_index": "",
          "title": "临过期锁定的起始类型",
          "description": "临过期锁定的起始类型"
        },
        {
          "key": "",
          "field": "ExpireLockPeriod",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "临过期锁定效期",
          "description": "临过期锁定效期"
        },
        {
          "key": "",
          "field": "LockPeriodType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "1=Day=天,\n2=Month=月,\n3=Percentage=%",
          "need_index": "",
          "title": "临过期锁定的效期类型",
          "description": "临过期锁定的效期类型"
        },
        {
          "key": "",
          "field": "LockOriginationType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "1=FromProduceDate=自生产日期,\n2=ToExpireDate=至过期日期",
          "need_index": "",
          "title": "锁定的起始类型",
          "description": "锁定的起始类型"
        },
        {
          "key": "",
          "field": "LockPeriod",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "锁定效期",
          "description": "锁定效期"
        },
        {
          "key": "",
          "field": "PLockPeriodType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "1=Day=天,\n2=Month=月,\n3=Percentage=%",
          "need_index": "",
          "title": "锁定的效期类型",
          "description": "锁定的效期类型"
        },
        {
          "key": "",
          "field": "PTagSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品标记",
          "description": "商品标记编号"
        },
        {
          "key": "",
          "field": "WMSEditFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=NoEdit=未修改,\n1=Edited=已更新",
          "need_index": "",
          "title": "是否在WMS中更新",
          "description": "是否在WMS中修改更新尺寸、UPC等，如果WMS中修改过，则不能被商户修改覆盖"
        },
        {
          "key": "",
          "field": "ProductStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效,\n-1=Void=作废",
          "need_index": "Y",
          "title": "商品状态",
          "description": "商品状态"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ExpandModel",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展属性",
          "description": "拓展属性"
        },
        {
          "key": "",
          "field": "SNFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoSN=无SN管理,\n1=BaseSN=基于SN管理",
          "need_index": "",
          "title": "序列化管理",
          "description": "序列化管理"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductCartonSize",
      "sheet": "CWMMaster",
      "title": "商品箱规",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品",
          "description": "商品"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "箱规数量",
          "description": "箱规数量"
        },
        {
          "key": "",
          "field": "CartonPackingUnit",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "箱规单位",
          "description": "箱规单位"
        },
        {
          "key": "",
          "field": "PalletPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "托规数量",
          "description": "托规数量，基于箱数"
        },
        {
          "key": "",
          "field": "BoxLength",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长，单位厘米",
          "description": "整箱长，单位厘米"
        },
        {
          "key": "",
          "field": "BoxWidth",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱宽，单位厘米",
          "description": "整箱宽，单位厘米"
        },
        {
          "key": "",
          "field": "BoxHeight",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱高，单位厘米",
          "description": "整箱高，单位厘米"
        },
        {
          "key": "",
          "field": "BoxWeight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱重量，单位克",
          "description": "整箱重量，单位克"
        },
        {
          "key": "",
          "field": "BoxBarCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱外箱码",
          "description": "整箱外箱码"
        },
        {
          "key": "",
          "field": "CartonWeight",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "外纸箱重量",
          "description": "外纸箱重量，单位克"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ThirdECProduct",
      "sheet": "CWMMaster",
      "title": "第三方平台商品",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商家编号",
          "description": "商品所属商家系统编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品",
          "description": "商品"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "第三方平台",
          "description": "第三方平台"
        },
        {
          "key": "",
          "field": "ThirdECProductID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "第三方平台商品ID",
          "description": "第三方平台商品ID"
        },
        {
          "key": "",
          "field": "ThirdECProductName",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "第三方平台商品名称",
          "description": "第三方平台商品名称"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductChild",
      "sheet": "CWMMaster",
      "title": "商品组套明细信息，如果商品是由其它子商品构成，则维护好商品的子商品构成",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "ChildProductSysNo",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品编号",
          "description": "WMS中具体商品编号"
        },
        {
          "key": "",
          "field": "ChildProductQty",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "WMS中商品数量"
        }
      ]
    },
    {
      "name": "StorageZone",
      "sheet": "CWMMaster",
      "title": "库区字典",
      "fields": [
        {
          "key": "PK",
          "field": "StorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库区ID,2位",
          "description": "库区ID，2位，第一位表示库区类型，M=零拣区,B=料想区,P=托盘区，G=地堆区"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ZoneName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库区名称",
          "description": "库区名称，库区一旦创建则不可手动修改"
        },
        {
          "key": "",
          "field": "StorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣,\n1=Box=料箱,\n2=Pallet=托盘,\n3=GroundHeap=地堆",
          "need_index": "Y",
          "title": "库位类型",
          "description": "库位类型，零拣库和地堆库均为混合存放模式，料箱库为按商品一库一箱存放模式，立体库位按商品一库一托存放模式。"
        },
        {
          "key": "",
          "field": "AutoFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Manu=人工库区,\n1=Auto=自动化库区,\n2=Robot=机器人库区",
          "need_index": "Y",
          "title": "库区形式",
          "description": "库区形式"
        },
        {
          "key": "",
          "field": "MergeProductFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=CellProductBNOnly=库位唯一批号管理,\n1=CellProductMerge=库位商品无批号管理,\n2=CellProductBNMulti=库位多批号管理",
          "need_index": "Y",
          "title": "商品合并形式",
          "description": "商品合并形式"
        },
        {
          "key": "",
          "field": "LogicZoneFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=RealZone=真实库区,\n1=LogicZone=虚拟库区,",
          "need_index": "",
          "title": "逻辑区标识",
          "description": "逻辑区标识"
        },
        {
          "key": "",
          "field": "ZoneFlags",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库区标识",
          "description": "库区标识（0=良品、2=次品）"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "MaxUpcCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "999",
          "remark": "",
          "need_index": "",
          "title": "库位最大商品种类",
          "description": "库位最大商品种类"
        },
        {
          "key": "",
          "field": "AllowExpireProductFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoExpireProduct=不允许过期存储,\n1=AllowExpireProduct=过期品可存储,",
          "need_index": "",
          "title": "是否允许过期品存储",
          "description": "是否允许过期品存储"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "StorageCell",
      "sheet": "CWMMaster",
      "title": "库位字典",
      "fields": [
        {
          "key": "PK",
          "field": "CellID",
          "type": "VARCHAR(15)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库位ID",
          "description": "库位ID:XX-XXX-XX-XXX(-X)；双伸库位多了后面的深度，单伸库位只有13为，双伸15位"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CellName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库位名称",
          "description": "库位名称:XX库区XXX排XX层XXX格(-X)"
        },
        {
          "key": "",
          "field": "StorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库区ID",
          "description": "库区ID"
        },
        {
          "key": "",
          "field": "StorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣,\n1=Box=料箱,\n2=Pallet=托盘,\n3=GroundHeap=地堆",
          "need_index": "Y",
          "title": "库位类型",
          "description": "库位类型，冗余，零拣库和地堆库均为混合存放模式，料箱库为按商品一库一箱存放模式，立体库位按商品一库一托存放模式。"
        },
        {
          "key": "",
          "field": "AutoFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Manu=人工库区,\n1=Auto=自动化库区,\n2=Robot=机器人库区",
          "need_index": "Y",
          "title": "库区形式",
          "description": "库区形式"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "良残标识"
        },
        {
          "key": "",
          "field": "RoadwayNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "通道、巷道",
          "description": "通道、巷道"
        },
        {
          "key": "",
          "field": "RowNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "排",
          "description": "排"
        },
        {
          "key": "",
          "field": "FloorNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "层",
          "description": "层"
        },
        {
          "key": "",
          "field": "CellNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "格",
          "description": "格"
        },
        {
          "key": "",
          "field": "DepthNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "深度",
          "description": "深度（深度为1或者2,2靠外）"
        },
        {
          "key": "",
          "field": "Length",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "长，单位厘米",
          "description": "长，单位厘米"
        },
        {
          "key": "",
          "field": "Width",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "宽，单位厘米",
          "description": "宽，单位厘米"
        },
        {
          "key": "",
          "field": "Height",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "高，单位厘米",
          "description": "高，单位厘米"
        },
        {
          "key": "",
          "field": "Weight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "承重，单位千克",
          "description": "承重，单位千克"
        },
        {
          "key": "",
          "field": "RealCellNum",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "真实格",
          "description": "真实格，用于路线规划"
        },
        {
          "key": "",
          "field": "IsAiry",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "0=No=不通风,\n1=Yes=通风",
          "need_index": "",
          "title": "是否通风",
          "description": "是否通风"
        },
        {
          "key": "",
          "field": "HumidityFrom",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "湿度下限",
          "description": "湿度下限"
        },
        {
          "key": "",
          "field": "HumidityTo",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "湿度上限",
          "description": "湿度上限"
        },
        {
          "key": "",
          "field": "TemperatureFrom",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "温度下限",
          "description": "温度下限"
        },
        {
          "key": "",
          "field": "TemperatureTo",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "温度上限",
          "description": "温度上限"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CellStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n2=Occupy=已占用,\n5=InStockLock=上架锁定,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，主要用于自动库时判断是否锁定"
        },
        {
          "key": "",
          "field": "ShelvesSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "货架编号",
          "description": "货架编号"
        },
        {
          "key": "",
          "field": "RelCellId",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "下游系统映射ID",
          "description": "下游系统映射库位ID"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "IsSpecial",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=不特殊,\n1=Yes=特殊",
          "need_index": "",
          "title": "是否特殊库位",
          "description": "是否特殊库位"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "Shelves",
      "sheet": "CWMMaster",
      "title": "货架（机器人流动式货架需要）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShelvesId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "货架ID",
          "description": "货架ID，手动填入，可以直接使用第三方ID"
        },
        {
          "key": "",
          "field": "ShelvesName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "货架名称",
          "description": "货架名称"
        },
        {
          "key": "",
          "field": "ShelvesType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=CellShelves=格式货架,\n1=RowShelves=层板货架,\n2=PalletShelves=托盘货架",
          "need_index": "Y",
          "title": "货架类型",
          "description": "货架类型"
        },
        {
          "key": "",
          "field": "StorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库区ID",
          "description": "库区ID"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WorkBench",
      "sheet": "CWMMaster",
      "title": "工作站",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WBId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "工作台ID",
          "description": "工作台ID，手动填入，可以直接使用第三方ID"
        },
        {
          "key": "",
          "field": "WBName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作台名称",
          "description": "工作台名称"
        },
        {
          "key": "",
          "field": "WBDesc",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明",
          "description": "说明"
        },
        {
          "key": "",
          "field": "WBType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=ManuSplitPallet=人工拆托工作台,\n2=ManuSISOSplitPick=人工单品分拣台,\n3=ManuMISOSplitPick=人工多品播种台,\n4=ManuSOSSBSplitPick=人工同构分拣台,\n11=RobotRepl=机器人补货站,\n12=RobotSplitPick=机器人分拣台,\n50=SOOutStockScan=订单出库扫描站,\n51=BOOutStock=BO单出库站",
          "need_index": "Y",
          "title": "工作台类型",
          "description": "工作台类型"
        },
        {
          "key": "",
          "field": "OperationType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Manual=人工操作区,\n2=Auto=自动服务区",
          "need_index": "Y",
          "title": "作业区类型",
          "description": "作业区类型"
        },
        {
          "key": "",
          "field": "OccupyFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=No=空置,\n1=Yes=被占用",
          "need_index": "Y",
          "title": "占用标识",
          "description": "占用标识"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "Pallet",
      "sheet": "CWMMaster",
      "title": "托盘字典",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PalletCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "托盘条码",
          "description": "托盘条码\n1-托盘码=P+yyMMdd+4位序号 （共11位）；2-周转箱码=B+yyMMdd+4位序号 （共11位）；3-商品原箱码=yyMMdd+5位序号 （共11位）"
        },
        {
          "key": "",
          "field": "PackingStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n2=Occupy=被占用,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "托盘状态",
          "description": "托盘状态"
        },
        {
          "key": "",
          "field": "PalletType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=WHSPallet=库内托盘\n1=VendorPallet=商户托盘,",
          "need_index": "",
          "title": "托盘类型",
          "description": "托盘类型"
        },
        {
          "key": "",
          "field": "SortIndex",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "序号",
          "description": "序号"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "Box",
      "sheet": "CWMMaster",
      "title": "周转箱字典",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BoxCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "条码",
          "description": "条码，也即是周转箱ID\n1-托盘码=P+yyMMdd+4位序号 （共11位）；2-周转箱码=B+yyMMdd+4位序号 （共11位）；3-商品原箱码=yyMMdd+5位序号 （共11位）"
        },
        {
          "key": "",
          "field": "BoxStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n2=Occupy=被占用,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "周转箱状态",
          "description": "周转箱状态"
        },
        {
          "key": "",
          "field": "SortIndex",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "序号",
          "description": "序号"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "StoragePolicy",
      "sheet": "CWMMaster",
      "title": "存储策略配置表(预留，for二期使用）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ProductTargetType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Default=默认策略,\n10=Category=商品分类,\n50=SKU=SKU",
          "need_index": "",
          "title": "策略目标类型",
          "description": "商品策略目标类型，策略优先级按照枚举数字大小；可扩展枚举来增加优先级的新策略目标"
        },
        {
          "key": "",
          "field": "ProductTargetSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "策略目标编号",
          "description": "策略目标编号"
        },
        {
          "key": "",
          "field": "ProductTargetName",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "策略目标名称",
          "description": "策略目标名称"
        },
        {
          "key": "",
          "field": "MinQtyForManuPicking",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "零拣区补货预警数",
          "description": "零拣区补货下限数(sku的单个数量)"
        },
        {
          "key": "",
          "field": "MinQtyForMiniload",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Miniload补货预警箱数",
          "description": "iniload补货下限箱数"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "StoragePolicyDetail",
      "sheet": "CWMMaster",
      "title": "存储策略配置明细(预留，for二期使用）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "StoragePolicySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "策略编号",
          "description": "策略编号"
        },
        {
          "key": "",
          "field": "StorageSectionId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库区ID,2位",
          "description": "库区ID,2位，第一位表示存放类型，U=混合存放，B=按箱体存放,P按托盘存放。"
        },
        {
          "key": "",
          "field": "RowNumStart",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "排起始号",
          "description": "排起始号(大于等于起始号）"
        },
        {
          "key": "",
          "field": "RowNumEnd",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "排截止号",
          "description": "排截止号（小于等于截止号）"
        },
        {
          "key": "",
          "field": "FloorNumStart",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "层起始号",
          "description": "层起始号(大于等于起始号）"
        },
        {
          "key": "",
          "field": "FloorNumEnd",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "层截止号",
          "description": "层截止号（小于等于截止号）"
        },
        {
          "key": "",
          "field": "CellNumStart",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "格起始号",
          "description": "格起始号(大于等于起始号）"
        },
        {
          "key": "",
          "field": "CellNumEnd",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "格截止号",
          "description": "格截止号（小于等于截止号）"
        },
        {
          "key": "",
          "field": "IsAiry",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=No=不通风,\n1=Yes=通风",
          "need_index": "",
          "title": "是否通风",
          "description": "是否通风,为NULL表示不限制"
        },
        {
          "key": "",
          "field": "HumidityFrom",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "湿度下限",
          "description": "湿度下限,为NULL表示不限制"
        },
        {
          "key": "",
          "field": "HumidityTo",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "湿度上限",
          "description": "湿度上限,为NULL表示不限制"
        },
        {
          "key": "",
          "field": "TemperatureFrom",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "温度下限",
          "description": "温度下限,为NULL表示不限制"
        },
        {
          "key": "",
          "field": "TemperatureTo",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "温度上限",
          "description": "温度上限,为NULL表示不限制"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "良残标识",
          "description": "良残标识,为NULL表示不限制"
        }
      ]
    },
    {
      "name": "WHSParamConfig",
      "sheet": "CWMMaster",
      "title": "仓库参数设置表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ParamGroupType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Whs=仓库,\n1=Vendor=商户",
          "need_index": "Y",
          "title": "参数组分类",
          "description": "参数组分类，仓库、商户的参数配置，后续可根据需求增加其他枚举值"
        },
        {
          "key": "",
          "field": "ParamGroupKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "'",
          "remark": "",
          "need_index": "Y",
          "title": "参数组主键",
          "description": "参数组主键，分类为仓库则为空，为商户则为商户编号。为兼容其他分组，保存字符串格式"
        },
        {
          "key": "",
          "field": "ParamGroupID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "参数组ID",
          "description": "参数组ID"
        },
        {
          "key": "",
          "field": "ParamGroupName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数组名称",
          "description": "参数组名称"
        },
        {
          "key": "",
          "field": "ParamName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数名称",
          "description": "参数名称"
        },
        {
          "key": "",
          "field": "ParamKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "参数Key",
          "description": "参数Key"
        },
        {
          "key": "",
          "field": "ParamValueType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=IsString=字符串,\n1=IsNumber=数字,\n2=IsTime=时间,\n3=Array=数组",
          "need_index": "Y",
          "title": "参数值类型",
          "description": "参数值类型"
        },
        {
          "key": "",
          "field": "ParamValueScope",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数值范围",
          "description": "参数值范围，根据参数值类型配置，这里是自定义的一套规则\n字符串配置：长度范围{2，10}或枚举名称\n数字配置：大小范围{0，30}或枚举名称\n时间：配置 Date/Time/DateTime\n数组：不配置或枚举名称:(value/string)"
        },
        {
          "key": "",
          "field": "ParamValue",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数值",
          "description": "参数值"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明",
          "description": "说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PCMaterial",
      "sheet": "CWMMaster",
      "title": "包耗材字典表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "MaterialType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Packing=包材,\n1=Comsumable=耗材",
          "need_index": "Y",
          "title": "材料类型",
          "description": "材料类型"
        },
        {
          "key": "",
          "field": "MaterialName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "材料名称",
          "description": "材料名称"
        },
        {
          "key": "",
          "field": "MaterialModel",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "材料型号",
          "description": "材料型号"
        },
        {
          "key": "",
          "field": "UseVendor",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "使用商户",
          "description": "使用商户"
        },
        {
          "key": "",
          "field": "BarCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "条码",
          "description": "条码"
        },
        {
          "key": "",
          "field": "CostPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "成本价",
          "description": "成本单价"
        },
        {
          "key": "",
          "field": "SalePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "售价",
          "description": "售价"
        },
        {
          "key": "",
          "field": "EMSFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "邮政标准纸箱",
          "description": "邮政标准纸箱"
        },
        {
          "key": "",
          "field": "Length",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "长，单位厘米",
          "description": "长，单位厘米"
        },
        {
          "key": "",
          "field": "Width",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "宽，单位厘米",
          "description": "宽，单位厘米"
        },
        {
          "key": "",
          "field": "Height",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "高，单位厘米",
          "description": "高，单位厘米"
        },
        {
          "key": "",
          "field": "Weight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量，单位克",
          "description": "重量，单位克"
        },
        {
          "key": "",
          "field": "StockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "库存数量",
          "description": "库存数量"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明",
          "description": "说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "VendorPCMCfg",
      "sheet": "CWMMaster",
      "title": "商户包耗材报价配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "BarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "条码",
          "description": "条码"
        },
        {
          "key": "",
          "field": "Price",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "价格",
          "description": "价格"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "BarCodeSQN",
      "sheet": "CWMMaster",
      "title": "条码序列，记录各日期条码后5位流水号序列的当前值",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BarCodeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "条码类型",
          "description": "条码类型 1=Pallet=托盘,\n2=Box=周转箱,3=ProductBox=商品原箱\n1-托盘码=P+yyMMdd+4位序号 （共11位）；2-周转箱码=B+yyMMdd+4位序号 （共11位）；3-商品原箱码=yyMMdd+5位序号 （共11位）"
        },
        {
          "key": "",
          "field": "BarCodeDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "日期",
          "description": "日期 (年月日)，yyyy-mm-dd"
        },
        {
          "key": "",
          "field": "CurrentSqn",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前序列",
          "description": "当前序列"
        }
      ]
    },
    {
      "name": "QuickRptConfig",
      "sheet": "CWMMaster",
      "title": "快速报表配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "报表编号",
          "description": "报表编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShowType",
          "type": "int",
          "required": "11",
          "default": "",
          "remark": "1=Table=表格,\n2=View=视图\n3=TableAndView=表格和视图",
          "need_index": "",
          "title": "展现形式",
          "description": ""
        },
        {
          "key": "",
          "field": "ViewType",
          "type": "int",
          "required": "11",
          "default": "",
          "remark": "1=LineAndBar=折线图/柱状图,\n3=Pie=饼图",
          "need_index": "",
          "title": "视图类型",
          "description": ""
        },
        {
          "key": "",
          "field": "PublishPortal",
          "type": "int",
          "required": "11",
          "default": "",
          "remark": "1=WMS=仓库端,\n2=Vendor=商户端\n3=WMSAndVendor=仓库和商户端",
          "need_index": "",
          "title": "发布端",
          "description": ""
        },
        {
          "key": "",
          "field": "RptGroupName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "报表组名",
          "description": "报表组名"
        },
        {
          "key": "",
          "field": "RptName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "报表名",
          "description": "报表名"
        },
        {
          "key": "",
          "field": "RptDesc",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "报表描述",
          "description": "报表描述"
        },
        {
          "key": "",
          "field": "RptSqlContent",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "SQL语句",
          "description": "SQL语句"
        },
        {
          "key": "",
          "field": "RptParamsJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "参数设置",
          "description": "参数设置的JSON结构体"
        },
        {
          "key": "",
          "field": "RptViewJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "视图设置",
          "description": "视图设置的JSON结构体"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorShipCfgMaster",
      "sheet": "CWMMaster",
      "title": "商户物流配置主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "ShipTypeMSNs",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递MSN列表",
          "description": "快递MSN列表"
        },
        {
          "key": "",
          "field": "PositiveProfit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "正毛利条件",
          "description": "正毛利条件"
        },
        {
          "key": "",
          "field": "NegativeProfit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "负毛利条件",
          "description": "负毛利条件"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间"
        },
        {
          "key": "",
          "field": "CaclDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计算日期",
          "description": "计算日期"
        },
        {
          "key": "",
          "field": "Desc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "描述",
          "description": "描述"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorShipCfgGroup",
      "sheet": "CWMMaster",
      "title": "商户物流配置条件组",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "MasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "主表SysNo",
          "description": "主表SysNo"
        },
        {
          "key": "",
          "field": "ShipTypeMSNs",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递MSN列表",
          "description": "快递MSN列表"
        },
        {
          "key": "",
          "field": "PositiveProfit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "正毛利条件",
          "description": "正毛利条件"
        },
        {
          "key": "",
          "field": "NegativeProfit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "负毛利条件",
          "description": "负毛利条件"
        },
        {
          "key": "",
          "field": "ThirdECIDs",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "平台",
          "description": "平台"
        },
        {
          "key": "",
          "field": "ThirdECSysNoes",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺",
          "description": "店铺"
        },
        {
          "key": "",
          "field": "PTagSysNoes",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单商品标记",
          "description": "订单商品标记"
        },
        {
          "key": "",
          "field": "OriginShipTypeIds",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原始物流",
          "description": "原始物流"
        },
        {
          "key": "",
          "field": "AmountLimitTop",
          "type": "Decimal(10,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "金额上限",
          "description": "订单金额上限，为NULL不限制"
        },
        {
          "key": "",
          "field": "AmountLimitBottom",
          "type": "Decimal(10,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "金额下限",
          "description": "订单金额下限，为NULL不限制"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "优先级",
          "description": "优先级"
        },
        {
          "key": "",
          "field": "SourceSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原编号",
          "description": "用于复制配置"
        },
        {
          "key": "",
          "field": "Desc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "描述",
          "description": "描述"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorShipCfg",
      "sheet": "CWMMaster",
      "title": "商户物流配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "MasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "主表SysNo",
          "description": "主表SysNo"
        },
        {
          "key": "",
          "field": "GroupSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "组SysNo",
          "description": "组SysNo"
        },
        {
          "key": "",
          "field": "ThirdECIDs",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "平台",
          "description": "平台"
        },
        {
          "key": "",
          "field": "ThirdECSysNoes",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺",
          "description": "店铺"
        },
        {
          "key": "",
          "field": "PTagSysNoes",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单商品标记",
          "description": "订单商品标记"
        },
        {
          "key": "",
          "field": "OriginShipTypeIds",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原始物流",
          "description": "原始物流"
        },
        {
          "key": "",
          "field": "AmountLimitTop",
          "type": "Decimal(10,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "金额上限",
          "description": "订单金额上限，为NULL不限制"
        },
        {
          "key": "",
          "field": "AmountLimitBottom",
          "type": "Decimal(10,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "金额下限",
          "description": "订单金额下限，为NULL不限制"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "省",
          "description": "省名，"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "市",
          "description": "市名"
        },
        {
          "key": "",
          "field": "WeightLimitTop",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量上限",
          "description": "重量上限，单位克，包裹重量大于等于上限"
        },
        {
          "key": "",
          "field": "WeightLimitBottom",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "重量下限",
          "description": "重量下限，单位克，包裹重量下于下限"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "SpareShipTypeIds",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备选物流",
          "description": "备选物流，多个物流用,分割"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "优先级",
          "description": "优先级"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ECCombo",
      "sheet": "CWMMaster",
      "title": "商品套组主信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "ComboID",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "组合商品ID",
          "description": "电商组合商品ID"
        },
        {
          "key": "",
          "field": "ComboName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "组合商品名",
          "description": "电商组合商品名"
        },
        {
          "key": "",
          "field": "ComboQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "组合商品数量",
          "description": "电商组合商品数量，默认是1"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ECComboChild",
      "sheet": "CWMMaster",
      "title": "商品套组明细信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ComboSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "套组SysNo",
          "description": "套组SysNo"
        },
        {
          "key": "",
          "field": "ChildProductSysNo",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品编号",
          "description": "WMS中具体商品编号"
        },
        {
          "key": "",
          "field": "ChildProductQty",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "WMS中商品数量"
        }
      ]
    },
    {
      "name": "WHSVendorThirdECShipCfg",
      "sheet": "CWMMaster",
      "title": "仓库第三方平台的电子面单配置，配置有效的电子面单",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台sysno",
          "description": "VendorThirdEC.SysNo"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ThirdECShipCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "第三方平台的电子面单配置SysNo",
          "description": "第三方平台的电子面单配置SysNo"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "通用状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipSpecial",
      "sheet": "CWMMaster",
      "title": "物流停发配置表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "varchar(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省名",
          "description": "停发省名"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市名",
          "description": "停发市名"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "区县名",
          "description": "停发区县名"
        },
        {
          "key": "",
          "field": "WaybillNumberAreaCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "运单三段码",
          "description": "停发运单三段码"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ProductTag",
      "sheet": "CWMMaster",
      "title": "商品标签",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TagName",
          "type": "varchar(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "标记名称",
          "description": "标记名称"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "",
          "field": "PTagSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "标记编号",
          "description": "标记编号"
        },
        {
          "key": "",
          "field": "IsFix",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "固定配置",
          "description": "默认0，1表示不能修改"
        }
      ]
    },
    {
      "name": "WHSVendorThirdEC",
      "sheet": "CWMMaster",
      "title": "仓库店铺",
      "fields": [
        {
          "key": "PK",
          "field": "ThirdECSysNo",
          "type": "INT (11)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺编号",
          "description": "店铺编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT (11)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOConfirmHour",
          "type": "INT (11)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传最大时效",
          "description": "订单回传最大时效，如果有数据，则作为托底回传的最大时效"
        },
        {
          "key": "",
          "field": "SOOutHour",
          "type": "INT (11)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单支付出库时效",
          "description": "订单支付出库时效"
        },
        {
          "key": "",
          "field": "SOOutCollectHour",
          "type": "INT (11)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单出库揽收时效",
          "description": "订单出库揽收时效"
        },
        {
          "key": "",
          "field": "SOCollectHour",
          "type": "INT (11)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单支付揽收时效",
          "description": "订单支付揽收时效"
        },
        {
          "key": "",
          "field": "SOOutWarning1",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单支付出库时效预警值",
          "description": "订单支付出库时效预警值"
        },
        {
          "key": "",
          "field": "SOOutWarning2",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单支付出库时效预警值",
          "description": "订单支付出库时效预警值"
        },
        {
          "key": "",
          "field": "SOOutWarning3",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单支付出库时效预警值",
          "description": "订单支付出库时效预警值"
        },
        {
          "key": "",
          "field": "SOOutCollectWarning1",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单出库揽收时效预警值",
          "description": "订单出库揽收时效预警值"
        },
        {
          "key": "",
          "field": "SOOutCollectWarning2",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单出库揽收时效预警值",
          "description": "订单出库揽收时效预警值"
        },
        {
          "key": "",
          "field": "SOOutCollectWarning3",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单出库揽收时效预警值",
          "description": "订单出库揽收时效预警值"
        },
        {
          "key": "",
          "field": "SOCollectWarning1",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单支付揽收时效预警值",
          "description": "订单支付揽收时效预警值"
        },
        {
          "key": "",
          "field": "SOCollectWarning2",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单支付揽收时效预警值",
          "description": "订单支付揽收时效预警值"
        },
        {
          "key": "",
          "field": "SOCollectWarning3",
          "type": "INT (11)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "订单支付揽收时效预警值",
          "description": "订单支付揽收时效预警值"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductBatch",
      "sheet": "CWMMaster",
      "title": "商品批次信息主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商家编号",
          "description": "商品所属商家系统编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批次号",
          "description": "批次号"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "生产日期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "过期日期",
          "description": "过期日期"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "BizTeam",
      "sheet": "CWMMaster",
      "title": "业务组信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TeamName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组名",
          "description": "业务组名"
        },
        {
          "key": "",
          "field": "TeamDesc",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "业务组简介",
          "description": "业务组简介"
        },
        {
          "key": "",
          "field": "LeaderUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "负责人编号",
          "description": "负责人编号"
        },
        {
          "key": "",
          "field": "LeaderUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "负责人",
          "description": "负责人"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "FeishuDepartmentId",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "飞书部门ID",
          "description": "飞书部门ID"
        },
        {
          "key": "",
          "field": "FeishuAddressid",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "飞书的工作地址ID",
          "description": "飞书的工作地址ID"
        },
        {
          "key": "",
          "field": "BizTeamType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务类型",
          "description": "业务类型：0=发货，1=2B业务，2=收货，3=销退"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "BizTeamVendor",
      "sheet": "CWMMaster",
      "title": "业务组商户关系",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BizTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组编号",
          "description": "业务组编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "BizTeamUser",
      "sheet": "CWMMaster",
      "title": "业务组人员关系",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BizTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组编号",
          "description": "业务组编号"
        },
        {
          "key": "",
          "field": "UserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "人员编号",
          "description": "人员编号"
        },
        {
          "key": "",
          "field": "UserFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Worker=员工,\n5=Temp=临时工",
          "need_index": "Y",
          "title": "人员标识",
          "description": "人员标识"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ShipHours",
      "sheet": "CWMMaster",
      "title": "运输时长，从揽收开始,基础数据表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "OriginProvince",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "发货省名",
          "description": "发货省名"
        },
        {
          "key": "",
          "field": "OriginCity",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货城市",
          "description": "发货城市"
        },
        {
          "key": "",
          "field": "TargetProvince",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货省名",
          "description": "收货省名"
        },
        {
          "key": "",
          "field": "TargetCity",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "收货城市",
          "description": "收货城市"
        },
        {
          "key": "",
          "field": "ShipHour",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "物流时长",
          "description": "物流时长"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "CoolMaster",
      "sheet": "CWMMaster",
      "title": "冷媒方案主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PlanName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "方案名称",
          "description": "方案名称"
        },
        {
          "key": "",
          "field": "PlanDesc",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "方案说明",
          "description": "方案说明"
        },
        {
          "key": "",
          "field": "OriginProvince",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货省名",
          "description": "发货省名"
        },
        {
          "key": "",
          "field": "OriginCity",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货城市",
          "description": "发货城市"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "方案温区类型",
          "description": "方案温区类型"
        },
        {
          "key": "",
          "field": "ProductLimitType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ByWeight=基于重量,\n1=ByPiece=基于件数",
          "need_index": "Y",
          "title": "商品条件",
          "description": "商品条件类型"
        },
        {
          "key": "",
          "field": "TempRule",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Dest=目的地,\n1=WHS=仓库",
          "need_index": "",
          "title": "温度规则",
          "description": "文档规则，取目的地温度或者仓库温度"
        },
        {
          "key": "",
          "field": "ProductTemperatureTypes",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "商品温区",
          "description": "如果有配置则包含商品温区的订单商品才参与冷媒计算（重量或件数）"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "方案状态",
          "description": "方案状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "CoolVendor",
      "sheet": "CWMMaster",
      "title": "冷媒方案与商户关系",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CoolMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "方案编号",
          "description": "方案编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户标号",
          "description": "商户标号"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "开始日期",
          "description": "开始日期"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止日期",
          "description": "截止日期"
        },
        {
          "key": "",
          "field": "AssignProvinces",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "指定省份",
          "description": "指定省份，多个省份用逗号分隔，如果为空则表示全部省份"
        }
      ]
    },
    {
      "name": "CoolRule",
      "sheet": "CWMMaster",
      "title": "冷媒规则",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CoolMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "方案编号",
          "description": "方案编号"
        },
        {
          "key": "",
          "field": "ShipHourStart",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流时效起始",
          "description": "物流时效起始"
        },
        {
          "key": "",
          "field": "ShipHourEnd",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流时效截止",
          "description": "物流时效截止"
        },
        {
          "key": "",
          "field": "ProductLimitStart",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品限制起始",
          "description": "商品限制起始"
        },
        {
          "key": "",
          "field": "ProductLimitEnd",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品限制截止",
          "description": "商品限制截止"
        },
        {
          "key": "",
          "field": "TemperatureStart",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "外界温度起始",
          "description": "外界温度起始"
        },
        {
          "key": "",
          "field": "TemperatureEnd",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "外界温度截止",
          "description": "外界温度截止"
        },
        {
          "key": "",
          "field": "IceBagCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "冰袋数量",
          "description": "需要冰袋数量"
        },
        {
          "key": "",
          "field": "DryIceCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "干冰数量",
          "description": "需要干冰数量"
        },
        {
          "key": "",
          "field": "FoamBagCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保温袋数量",
          "description": "需要保温袋数量"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        }
      ]
    },
    {
      "name": "CoolMatrixing",
      "sheet": "CWMMaster",
      "title": "冷媒换算",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CoolMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "方案编号",
          "description": "方案编号"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "对应温区类型的商品换算成当前方案温区类型"
        },
        {
          "key": "",
          "field": "WeightRangeStart",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品重量起始",
          "description": "商品重量起始"
        },
        {
          "key": "",
          "field": "WeightRangeEnd",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品重量截止",
          "description": "商品重量截止"
        },
        {
          "key": "",
          "field": "SubstitutionRatio",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "换算数量",
          "description": "重量范围内的商品，多少个换算成当前温区类型1个商品"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        }
      ]
    },
    {
      "name": "TMSMaster",
      "sheet": "CWMMaster",
      "title": "TMS配置方案主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "Title",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "标题",
          "description": "标题"
        },
        {
          "key": "",
          "field": "Desc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "描述",
          "description": "描述"
        },
        {
          "key": "",
          "field": "ShipTypeMSNs",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "限定快递",
          "description": "限定快递"
        },
        {
          "key": "",
          "field": "ShipTypeCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递数量",
          "description": "快递数量，首选快递、备选快递"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        }
      ]
    },
    {
      "name": "TMSProfitCondition",
      "sheet": "CWMMaster",
      "title": "TMS商户毛利条件",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TMSSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "TMS配置编号",
          "description": "TMS配置编号"
        },
        {
          "key": "",
          "field": "ProfitCondition",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=ProfitMinQuotation=正毛利最低报价,\n1=MaxProfit=毛利最高不考虑最低报价,\n3=MinQuotation=最低报价不考虑毛利",
          "need_index": "Y",
          "title": "对比类型",
          "description": "对比类型"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "优先级",
          "description": "优先级,数值越大优先级越高"
        }
      ]
    },
    {
      "name": "TMSRelVendor",
      "sheet": "CWMMaster",
      "title": "TMS配置方案关联商户表，每个商户只能拥有一个方案",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TMSSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "TMS配置编号",
          "description": "TMS配置编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "TMSVendorStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=INIT=初始态,\n50=GenerateData=已生成数据,\n100=Completed=已发布",
          "need_index": "",
          "title": "TMS状态",
          "description": "已发布后，可以改为初始态，继续编辑、生成数据。发布后可以重新根据日期计算、发布"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "有效状态",
          "description": "有效状态,初始态可以改未无效"
        }
      ]
    },
    {
      "name": "TMSRelVendorRelease",
      "sheet": "CWMMaster",
      "title": "TMS配置方案关联商户发布表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TMSSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "TMS配置编号",
          "description": "TMS配置编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "ReleaseStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态,\n1=Released=已发布",
          "need_index": "",
          "title": "发布状态",
          "description": "发布状态"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "有效状态",
          "description": "有效状态，起始-截止日期包含了计算日期的，并且发布状态为已发布的，只有1条有效记录。历史已发布的均会设置为无效。"
        },
        {
          "key": "",
          "field": "CalcDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计算日期",
          "description": "计算条件日期"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间"
        },
        {
          "key": "",
          "field": "ReleaseDate",
          "type": "DateTime",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发布日期",
          "description": "发布日期"
        },
        {
          "key": "",
          "field": "ReleaseUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发布人",
          "description": "发布人"
        },
        {
          "key": "",
          "field": "ReleaseDetailJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发布内容",
          "description": "发布内容List<TMSVendorSGroup>,发布时更新"
        }
      ]
    },
    {
      "name": "TMSVendorSGroup",
      "sheet": "CWMMaster",
      "title": "TMS配置特殊要求组，同一个商户的每组条件之间需要设定优先级",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TMSSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "TMS配置编号",
          "description": "TMS配置编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "ReleaseSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发布编号",
          "description": "发布编号,未发布之前为0，发布后复制为对应发布编号的特殊条件组"
        },
        {
          "key": "",
          "field": "ReleaseStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态,\n1=Released=已发布",
          "need_index": "",
          "title": "发布状态",
          "description": "发布状态"
        },
        {
          "key": "",
          "field": "Title",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "标题",
          "description": "标题"
        },
        {
          "key": "",
          "field": "SGroupType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=SOCondition=订单条件,\n1=ShipOrderCount=单量控制",
          "need_index": "Y",
          "title": "分组类型",
          "description": "分组类型，订单分配快递时根据其优先级考虑"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "优先级",
          "description": "优先级,数值越大优先级越高,为负数时不执行。如果单量控制优先级高于订单条件，订单分配快递时优先根据单量控制的TMS得到快递"
        },
        {
          "key": "",
          "field": "ResultConditionType",
          "type": "int",
          "required": "NULL",
          "default": "",
          "remark": "1=InArr=包含,\n2=NotInArr=不包含,\n3=InArrSort=按顺序包含",
          "need_index": "",
          "title": "本组条件结果关系",
          "description": "本组条件结果关系"
        },
        {
          "key": "",
          "field": "ResultShipTypeMSNs",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "本组条件结果",
          "description": "本组条件期望结果快递列表，按,分割"
        },
        {
          "key": "",
          "field": "SGroupItemJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "条件明细列表JSON",
          "description": "条件明细列表JSON，在发布应用时才会更新"
        }
      ]
    },
    {
      "name": "TMSVendorSGroupItem",
      "sheet": "CWMMaster",
      "title": "TMS配置特殊要求每组的具体要求",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SGroupSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "配置组编号",
          "description": "配置组编号"
        },
        {
          "key": "",
          "field": "SOConditionType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=PTagSysNo=商品标记,\n2=SOAmount=订单金额,\n3=ThirdECID=电商平台,\n4=ThirdECStoreName=店铺名称,\n5=OriginShipType=原始物流,\n1111=ShipOrderCount=单量控制",
          "need_index": "Y",
          "title": "条件类型",
          "description": "条件类型，将需要配置的订单字段转换为枚举"
        },
        {
          "key": "",
          "field": "CompareType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=MoreThan=大于,\n1=LessThan=小于,\n2=Equal=等于,\n3=Like=包含,\n4=InArr=在列表中,\n5=NotInArr=不在列表中",
          "need_index": "",
          "title": "对比类型",
          "description": "对比类型"
        },
        {
          "key": "",
          "field": "CompareValue",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "对比值",
          "description": "对比值"
        }
      ]
    },
    {
      "name": "TMSVendorOutput",
      "sheet": "CWMMaster",
      "title": "商户TMS输出",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "TMSSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "TMS配置编号",
          "description": "TMS配置编号"
        },
        {
          "key": "",
          "field": "ReleaseSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发布编号",
          "description": "发布编号"
        },
        {
          "key": "",
          "field": "SGroupSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配置组编号",
          "description": "配置组编号"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "WeightLimitTop",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量上限",
          "description": "重量上限，单位克，包裹重量大于等于上限"
        },
        {
          "key": "",
          "field": "WeightLimitBottom",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "重量下限",
          "description": "重量下限，单位克，包裹重量小于下限"
        },
        {
          "key": "",
          "field": "InitItemsJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "初始生成的明细",
          "description": "初始生成的明细Json"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "TMSVendorOutputItem",
      "sheet": "CWMMaster",
      "title": "商户TMS输出指定省指定重量段的快递优先级明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TMSOutputSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配置条件编号",
          "description": "商户TMS输出编号"
        },
        {
          "key": "",
          "field": "ShipTypeMSN",
          "type": "varchar(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递",
          "description": "快递"
        },
        {
          "key": "",
          "field": "ShipTypeIndex",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "快递顺序",
          "description": "快递顺序，从1开始，第一优先级为1，备选物流为2、3、4、5"
        },
        {
          "key": "",
          "field": "ShipTypeCost",
          "type": "varchar(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递成本",
          "description": "快递成本（5+1）"
        },
        {
          "key": "",
          "field": "ShipTypeQuotation",
          "type": "varchar(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递报价",
          "description": "快递报价（6+1.5）"
        },
        {
          "key": "",
          "field": "ShipTypeProfit",
          "type": "varchar(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递毛利",
          "description": "快递毛利（1+0.5）"
        }
      ]
    },
    {
      "name": "BizDictionary",
      "sheet": "CWMMaster",
      "title": "业务字典表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BizDicType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=RMRRequest=退货登记要求,\n2=AdditionalService=增值服务",
          "need_index": "",
          "title": "应用类型",
          "description": "应用类型，全局枚举：\n1=RMRRequest=针对退货登记明细中存在残次品时需要填写。"
        },
        {
          "key": "",
          "field": "BizDicTypeIcon",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "应用类型图标",
          "description": "应用类型图标"
        },
        {
          "key": "",
          "field": "BizDicCategory",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务分类",
          "description": "业务分类，不同应用类型不同业务分类枚举\nBizDicType = 1:\n{1=Factory=厂商, 2=ImperfectType=次品分类}\nBizDicType = 2:\n{1=RMAddService=退货增值服务项}"
        }
      ]
    },
    {
      "name": "VendorBizDictionary",
      "sheet": "CWMMaster",
      "title": "商户业务字典表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "BizDicType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=RMRRequest=退货登记要求,\n2=AdditionalService=增值服务",
          "need_index": "",
          "title": "应用类型",
          "description": "应用类型，全局枚举"
        },
        {
          "key": "",
          "field": "BizDicCategory",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务分类",
          "description": "业务分类"
        },
        {
          "key": "",
          "field": "BizDicName",
          "type": "varchar(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "字典名称",
          "description": "字典名称"
        },
        {
          "key": "",
          "field": "RelPolicy",
          "type": "varchar(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "相关策略",
          "description": "相关策略：\n（1）退货登记要求则是存储策略：多个库位左Like:GB-001,GB-002"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "方案状态",
          "description": "方案状态"
        }
      ]
    },
    {
      "name": "ProductBizDic",
      "sheet": "CWMMaster",
      "title": "商品业务字典",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorBizDicSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务字典SysNo",
          "description": "业务字典SysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品",
          "description": "商品"
        }
      ]
    },
    {
      "name": "ValueAddMaster",
      "sheet": "CWMMaster",
      "title": "增值服务主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "ValueAddDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "增值服务日期",
          "description": "增值服务日期"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ValueAddItem",
      "sheet": "CWMMaster",
      "title": "增值服务明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VAMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "CategorySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "类别",
          "description": "类别"
        },
        {
          "key": "",
          "field": "ValueAddBillType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单据类型",
          "description": "单据类型"
        },
        {
          "key": "",
          "field": "BillIDs",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单据ID",
          "description": "单据ID，可多个"
        },
        {
          "key": "",
          "field": "ProductUPCs",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品条码",
          "description": "商品条码，可多个"
        },
        {
          "key": "",
          "field": "Qty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "Amount",
          "type": "DECIMAL(11,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "金额",
          "description": "金额"
        },
        {
          "key": "",
          "field": "ValueAddUnit",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单位",
          "description": "单位"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "对应快递单号",
          "description": "对应快递单号"
        },
        {
          "key": "",
          "field": "PayerName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "付款人",
          "description": "付款人"
        },
        {
          "key": "",
          "field": "RelatedAddress",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "相关地址",
          "description": "相关地址"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "Attachments",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "附件",
          "description": "附件，可多个"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WorkerMaster",
      "sheet": "CWMMaster",
      "title": "工人基本信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "所属业务组编号",
          "description": "所属业务组编号"
        },
        {
          "key": "",
          "field": "TeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "所属业务组名",
          "description": "所属业务组名"
        },
        {
          "key": "",
          "field": "TeamLeaderName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "所属业务组负责人",
          "description": "所属业务组负责人"
        },
        {
          "key": "",
          "field": "CurTeamSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "当前业务组编号",
          "description": "当前业务组编号"
        },
        {
          "key": "",
          "field": "CurTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "当前业务组名",
          "description": "当前业务组名"
        },
        {
          "key": "",
          "field": "WorkerCompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "劳务公司编号",
          "description": "劳务公司编号"
        },
        {
          "key": "",
          "field": "Name",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "证件姓名",
          "description": "证件姓名"
        },
        {
          "key": "",
          "field": "Gender",
          "type": "VARCHAR(4)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "性别",
          "description": "性别"
        },
        {
          "key": "",
          "field": "Nation",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "民族",
          "description": "民族"
        },
        {
          "key": "",
          "field": "Cert",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "证件号码",
          "description": "证件号码，唯一Unique"
        },
        {
          "key": "",
          "field": "Address",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "籍贯地址",
          "description": "籍贯地址"
        },
        {
          "key": "",
          "field": "Birthday",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出生日期",
          "description": "出生日期"
        },
        {
          "key": "",
          "field": "Organize",
          "type": "VARCHAR(80)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "签发机构",
          "description": "签发机构"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "开始日期",
          "description": "开始日期"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "截止日期",
          "description": "截止日期"
        },
        {
          "key": "",
          "field": "WorkerType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Standard = 飞书人员,  \n3=TempDaily= 劳务日结",
          "need_index": "",
          "title": "人员类型",
          "description": "人员类型"
        },
        {
          "key": "",
          "field": "WHSDeptId",
          "type": "varchar(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "仓库-飞书部门ID",
          "description": "仓库-飞书部门ID"
        },
        {
          "key": "",
          "field": "AuthUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "云仓用户编号",
          "description": "云仓用户编号，如果未绑定则为0"
        },
        {
          "key": "",
          "field": "FeiShuUserId",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "飞书用户Id",
          "description": "飞书用户Id，如果没有飞书用户Id则为空字符"
        },
        {
          "key": "",
          "field": "FeiShuPersonId",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "飞书人事PersonID",
          "description": "飞书人事企业版PersonID"
        },
        {
          "key": "",
          "field": "FeishuEmployeeId",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "雇员ID",
          "description": "雇员ID，飞书中的雇员ID"
        },
        {
          "key": "",
          "field": "FeishuEmployeeNo",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "雇员工号",
          "description": "雇员工号"
        },
        {
          "key": "",
          "field": "FeishuEmployStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "2",
          "remark": "1=OffEmployed=在职，\n0=OnEmploying=离职，\n2=NoNeed=未知",
          "need_index": "",
          "title": "职员状态",
          "description": "职员状态，自营仓数据来源于飞书。临时工和非仓库内的员工都是未知"
        },
        {
          "key": "",
          "field": "JobLevelId",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "职级ID",
          "description": "职级ID"
        },
        {
          "key": "",
          "field": "JobLevelName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "职级名称",
          "description": "职级名称"
        },
        {
          "key": "",
          "field": "PositionName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "职务名称",
          "description": "职务名称"
        },
        {
          "key": "",
          "field": "LastClockTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后打卡时间",
          "description": "最后打卡时间"
        },
        {
          "key": "",
          "field": "JobPositionSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "工作岗位编号",
          "description": "工作岗位编号，对应cwmmain.JobPosition.SysNo"
        },
        {
          "key": "",
          "field": "JobPositionNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "Y",
          "title": "岗位顺序号",
          "description": "岗位顺序号，相同岗位的职级顺序，越小越高"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WorkerHeadImage",
      "sheet": "CWMMaster",
      "title": "工人身份证头像",
      "fields": [
        {
          "key": "PK",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工人编号",
          "description": "工人编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "HeadImage",
          "type": "BLOB",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "头像数据",
          "description": "头像数据"
        }
      ]
    },
    {
      "name": "WorkerCompany",
      "sheet": "CWMMaster",
      "title": "工人劳务公司",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CompanyName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "公司名称",
          "description": "公司名称"
        },
        {
          "key": "",
          "field": "Address",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "公司地址",
          "description": "公司地址"
        },
        {
          "key": "",
          "field": "Contactor",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系人",
          "description": "联系人"
        },
        {
          "key": "",
          "field": "Phone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "",
          "field": "FeishuId",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "飞书部门ID",
          "description": "飞书部门ID"
        }
      ]
    },
    {
      "name": "WorkerRecord",
      "sheet": "CWMMaster",
      "title": "工人每日在各Team工时统计，按照工人、日期、所在Team作为唯一索引",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工人编号",
          "description": "工人基本信息的系统编号"
        },
        {
          "key": "",
          "field": "WorkDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作日期",
          "description": "工作日期"
        },
        {
          "key": "",
          "field": "TeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组编号",
          "description": "当前业务组编号"
        },
        {
          "key": "",
          "field": "TeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务组名",
          "description": "当前业务组名"
        },
        {
          "key": "",
          "field": "WorkerCompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "劳务公司编号",
          "description": "劳务公司编号"
        },
        {
          "key": "",
          "field": "WorkHours",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "工时",
          "description": "工时，工时为0时表示有异常，需要人工处理"
        },
        {
          "key": "",
          "field": "ExceptionFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoException=无异常,\n1=HasException=有异常",
          "need_index": "",
          "title": "异常标识",
          "description": "异常标识"
        },
        {
          "key": "",
          "field": "RecordNote",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "记录说明",
          "description": "记录说明，，比如调整说明日志，"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WorkerRecordLog",
      "sheet": "CWMMaster",
      "title": "工人登记记录日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工人编号",
          "description": "工人编号"
        },
        {
          "key": "",
          "field": "WorkDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作日期",
          "description": "工作日期"
        },
        {
          "key": "",
          "field": "TeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组编号",
          "description": "当前业务组编号"
        },
        {
          "key": "",
          "field": "TeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务组名",
          "description": "当前业务组名"
        },
        {
          "key": "",
          "field": "RecordType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=GoWork=上班,\n1=GoHome=下班,\n10=TransferIn=借调入\n11=TransferOut=借调出,",
          "need_index": "Y",
          "title": "登记类型",
          "description": "登记类型"
        },
        {
          "key": "",
          "field": "RecordTime",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "登记时间",
          "description": "登记时间"
        },
        {
          "key": "",
          "field": "LogNote",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "日志说明",
          "description": "日志说明，自动填充，比如从哪里借调到哪里等"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "TargetTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "目标业务组编号",
          "description": "借调出到目标的业务组编号"
        },
        {
          "key": "",
          "field": "TargetTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "目标业务组名",
          "description": "借调出到目标的当前业务组名"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WorkerTransferPool",
      "sheet": "CWMMaster",
      "title": "工人调拨池",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工人编号",
          "description": "工人基本信息的系统编号"
        },
        {
          "key": "",
          "field": "FeiShuUserId",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "飞书用户Id",
          "description": "飞书用户Id，如果没有飞书用户Id则为空字符"
        },
        {
          "key": "",
          "field": "WorkDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作日期",
          "description": "工作日期"
        },
        {
          "key": "",
          "field": "OriginTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "调出组编号",
          "description": "调出组编号"
        },
        {
          "key": "",
          "field": "OriginTeamName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "调出组名",
          "description": "调出组名"
        },
        {
          "key": "",
          "field": "OriginOutDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "调出时间",
          "description": "调出时间"
        },
        {
          "key": "",
          "field": "TargetTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "调入组编号",
          "description": "调入组编号"
        },
        {
          "key": "",
          "field": "TargetTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "调入组名",
          "description": "调入组名"
        },
        {
          "key": "",
          "field": "ActualInDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实际进组时间",
          "description": "实际进组时间"
        },
        {
          "key": "",
          "field": "TransferStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=TransferOut=已调出,\n100=TransferIn=已调入",
          "need_index": "",
          "title": "调拨状态",
          "description": "调拨状态"
        },
        {
          "key": "",
          "field": "TransferClient",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "调拨终端",
          "description": "调拨终端：身份证签卡终端，飞书调拨小程序"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "记录说明",
          "description": "记录说明"
        }
      ]
    },
    {
      "name": "WorkerHours",
      "sheet": "CWMMaster",
      "title": "工人每日总工时结算统计,按照工人、日期唯一索引",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工人编号",
          "description": "工人基本信息的系统编号"
        },
        {
          "key": "",
          "field": "WorkDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作日期",
          "description": "工作日期"
        },
        {
          "key": "",
          "field": "WorkHours",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "统计工时",
          "description": "统计工时，工时为0时表示有异常，需要人工处理"
        },
        {
          "key": "",
          "field": "FeeHours",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计费工时",
          "description": "实际计费工时，如小于半小时向下取整，高于半小时取半小时"
        },
        {
          "key": "",
          "field": "WorkerCompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "劳务公司编号",
          "description": "劳务公司编号"
        },
        {
          "key": "",
          "field": "ExceptionFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoException=无异常,\n1=HasException=有异常",
          "need_index": "",
          "title": "异常标识",
          "description": "异常标识"
        },
        {
          "key": "",
          "field": "RecordNote",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "记录说明",
          "description": "记录说明，比如调整说明日志，"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WorkerRegMid",
      "sheet": "CWMMaster",
      "title": "工人注册中间表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID（来源二维码）"
        },
        {
          "key": "",
          "field": "Name",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "姓名",
          "description": "姓名（手填）"
        },
        {
          "key": "",
          "field": "Cert",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "身份证后4位",
          "description": "身份证后4位（手填）"
        },
        {
          "key": "",
          "field": "Mobile",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "手机号",
          "description": "手机号（手填）"
        },
        {
          "key": "",
          "field": "FeiShuUserId",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "飞书用户Id",
          "description": "飞书用户Id，由飞驼调用创建接口时，飞驼生成飞书User_ID，规则：\nFT+手机号"
        },
        {
          "key": "",
          "field": "WorkerCompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "劳务公司编号",
          "description": "劳务公司编号（来源二维码）"
        },
        {
          "key": "",
          "field": "Param1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预留参数1",
          "description": "预留参数1"
        },
        {
          "key": "",
          "field": "Param2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预留参数2",
          "description": "预留参数2"
        },
        {
          "key": "",
          "field": "Param3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预留参数3",
          "description": "预留参数3"
        },
        {
          "key": "",
          "field": "ProcessStatus",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Init=待处理,\n4=Failure=处理失败,\n100=Completed=已处理",
          "need_index": "",
          "title": "处理状态",
          "description": "处理状态，0=初始态未处理，4=处理失败,100=已处理"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明备注",
          "description": "说明备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "更新时间",
          "description": "更新时间"
        }
      ]
    },
    {
      "name": "WorkerBlack",
      "sheet": "CWMMaster",
      "title": "工人黑名单",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID（来源二维码）"
        },
        {
          "key": "",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工人编号",
          "description": "工人编号"
        },
        {
          "key": "",
          "field": "WorkerCompanyName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "劳务公司",
          "description": "劳务公司"
        },
        {
          "key": "",
          "field": "EventDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发生日期",
          "description": "发生日期"
        },
        {
          "key": "",
          "field": "EventDesc",
          "type": "VARCHAR(1000)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "事由描述",
          "description": "事由描述"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明备注",
          "description": "说明备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "",
          "field": "FeishuId",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "飞书部门ID",
          "description": "飞书部门ID"
        }
      ]
    },
    {
      "name": "ExtProduct",
      "sheet": "CWMMaster",
      "title": "外部商品",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商家编号",
          "description": "商品所属商家系统编号"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "平台",
          "description": "平台"
        },
        {
          "key": "",
          "field": "SourceProductID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "商户源商品ID",
          "description": "商户源商品ID"
        },
        {
          "key": "",
          "field": "ProductID",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "商品ID",
          "description": "商品ID"
        },
        {
          "key": "",
          "field": "ProductExtID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "商品扩展ID",
          "description": "商品扩展ID"
        },
        {
          "key": "",
          "field": "ProductModel",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "规格",
          "description": "规格"
        },
        {
          "key": "",
          "field": "UPCCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "商品UPCCode",
          "description": "商品UPCCode，即商品条码"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计数单位",
          "description": "计数单位"
        },
        {
          "key": "",
          "field": "Length",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "长，单位厘米",
          "description": "商品长，单位厘米"
        },
        {
          "key": "",
          "field": "Width",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "宽，单位厘米",
          "description": "商品宽，单位厘米"
        },
        {
          "key": "",
          "field": "Height",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "高，单位厘米",
          "description": "商品高，单位厘米"
        },
        {
          "key": "",
          "field": "Weight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量，单位克",
          "description": "重量，单位克"
        },
        {
          "key": "",
          "field": "BarCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包装箱码",
          "description": "包装箱码"
        },
        {
          "key": "",
          "field": "BoxLength",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长，单位厘米",
          "description": "整箱长，单位厘米"
        },
        {
          "key": "",
          "field": "BoxWidth",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长宽，单位厘米",
          "description": "整箱宽，单位厘米"
        },
        {
          "key": "",
          "field": "BoxHeight",
          "type": "DECIMAL(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长高，单位厘米",
          "description": "整箱高，单位厘米"
        },
        {
          "key": "",
          "field": "BoxWeight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱长重量，单位克",
          "description": "整箱重量，单位克"
        },
        {
          "key": "",
          "field": "BoxBarCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱外箱码",
          "description": "整箱外箱码"
        },
        {
          "key": "",
          "field": "DurationPeriod",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "保质期",
          "description": "保质期 --结合保质期类型使用"
        },
        {
          "key": "",
          "field": "DurationPeriodType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Day=天,\n1=Month=月,\n2=Year=年",
          "need_index": "",
          "title": "保质期类型",
          "description": "保质期类型 --结合保质期使用"
        },
        {
          "key": "",
          "field": "PackagingFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包装标识",
          "description": "包装标识，默认0 周转箱，，1 表示原箱"
        },
        {
          "key": "",
          "field": "ProductRefCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "关联商品数量",
          "description": "关联商品数量"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ExtProductRef",
      "sheet": "CWMMaster",
      "title": "外部商品关系表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ExtProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "外部商品编号",
          "description": "外部商品编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "WMS中具体商品编号"
        },
        {
          "key": "",
          "field": "ProductQty",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "WMS中商品数量"
        }
      ]
    },
    {
      "name": "AIConfigTeamData",
      "sheet": "CWMMaster",
      "title": "AI自动化创建的基础业务配置数据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID（来源二维码）"
        },
        {
          "key": "",
          "field": "TeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "所属业务组编号",
          "description": "所属业务组编号"
        },
        {
          "key": "",
          "field": "OpenStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否开启中",
          "description": "是否开启中，0=未开启，1=开启中"
        },
        {
          "key": "",
          "field": "SOWaveOptTypes",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单允许波次类型",
          "description": "订单允许波次类型，多个用逗号分隔，默认是标准波次(0)、同构（1）和摘果边拣边分（4）"
        },
        {
          "key": "",
          "field": "PickPolicy",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拣货策略",
          "description": "拣货策略：0=效率优先，1=清空库位优先"
        },
        {
          "key": "",
          "field": "SSBMinSOCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "5",
          "remark": "",
          "need_index": "",
          "title": "批量单最小单数",
          "description": "本Team对批量单最小定义的单数（大于等于此数就用批量单）"
        },
        {
          "key": "",
          "field": "WorkerDataList",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "本组使用拣货人列表",
          "description": "本组使用拣货人列表JSON文本：List<WorkerData>，WorkerData两个字段：WorkerId（工人ID,使用UserSysNo），WorkerLevel（工人级别：8,9,10）"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明备注",
          "description": "说明备注"
        },
        {
          "key": "",
          "field": "RunFrequency",
          "type": "INT",
          "required": "NOT NULL",
          "default": "10",
          "remark": "",
          "need_index": "",
          "title": "运行频率",
          "description": "运行频率，单位：分钟，默认10分钟"
        },
        {
          "key": "",
          "field": "CurRunStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=WaitRun=待运行,\n1=OnRunning=运行中",
          "need_index": "",
          "title": "当前运行状态",
          "description": "当前运行状态"
        },
        {
          "key": "",
          "field": "LastRunStartTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后一次运行开始时间",
          "description": "最后一次运行开始时间"
        },
        {
          "key": "",
          "field": "LastRunEndTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后一次运行结束时间",
          "description": "最后一次运行结束时间"
        },
        {
          "key": "",
          "field": "LastRunResultState",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Fail=失败,\n100=Success=成功",
          "need_index": "",
          "title": "最后一次运行结果状态",
          "description": "最后一次运行结果状态"
        },
        {
          "key": "",
          "field": "LastRunResultMsg",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后一次运行结果说明",
          "description": "最后一次运行结果说明"
        },
        {
          "key": "",
          "field": "NextRunStartTime",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "下一次运行时间",
          "description": "下一次运行时间"
        },
        {
          "key": "",
          "field": "NoAuto_MinSOWeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "20000",
          "remark": "",
          "need_index": "",
          "title": "订单商品重量超过[]克不能自动创建波次",
          "description": "以下条件的订单不能自动创建波次：订单商品重量超过[]克"
        },
        {
          "key": "",
          "field": "NoAuto_MinSOItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "50",
          "remark": "",
          "need_index": "",
          "title": "订单商品件数超过[]件不能自动创建波次",
          "description": "以下条件的订单不能自动创建波次：订单商品件数超过[]件"
        },
        {
          "key": "",
          "field": "NoAuto_OriginShipTypeIds",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单原始快递为[]不能自动创建波次",
          "description": "以下条件的订单不能自动创建波次：订单原始快递为[]"
        },
        {
          "key": "",
          "field": "StartRunTimePerDay",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "每天开始运行的起始时间",
          "description": "每天开始运行的起始时间，格式：HH:mm"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PCMCfg",
      "sheet": "CWMMaster",
      "title": "包耗材使用配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商家编号",
          "description": "商家系统编号"
        },
        {
          "key": "",
          "field": "CfgName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "策略名称",
          "description": "策略名称"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "优先级",
          "description": "优先级，数字越大优先级越高"
        },
        {
          "key": "",
          "field": "ProductRangeRule",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Include=指定这些商品,\n1=Exclude=排除这些商品",
          "need_index": "",
          "title": "商品范围规则",
          "description": "商品范围规则"
        },
        {
          "key": "",
          "field": "ProductQtySetRule",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=AssignQty=指定件数配置,\n1=RangeQty=设置件数范围配置",
          "need_index": "",
          "title": "商品数量设置规则",
          "description": "商品数量设置规则"
        },
        {
          "key": "",
          "field": "ProductQtyCalcRule",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SingleCalc=每种商品独立计算,\n1=MergeCalc=所有商品合并计算",
          "need_index": "",
          "title": "商品数量计数规则",
          "description": "商品数量计数规则"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PCMCfgProduct",
      "sheet": "CWMMaster",
      "title": "包耗材使用配置所设置的商品",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PCMUsingCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材配置编号",
          "description": "包耗材使用配置编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        }
      ]
    },
    {
      "name": "PCMCfgRuleCond",
      "sheet": "CWMMaster",
      "title": "包耗材使用配置规则条件",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PCMUsingCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材使用配置编号",
          "description": "包耗材使用配置编号"
        },
        {
          "key": "",
          "field": "ItemType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=ProductPackageRequire=商品打包要求,\n1=FullPackageRequire=包裹打包要求",
          "need_index": "",
          "title": "打包要求类型",
          "description": "打包要求类型"
        },
        {
          "key": "",
          "field": "ProdQtyMin",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量最小值",
          "description": "商品数量大于等于，指定件数配置时，ProdQtyMin=ProdQtyMax，设置件数范围配置时，ProdQtyMin，ProdQtyMax分别取最小值和最大值"
        },
        {
          "key": "",
          "field": "ProdQtyMax",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量最大值",
          "description": "商品数量小于等于"
        }
      ]
    },
    {
      "name": "PCMCfgRuleItem",
      "sheet": "CWMMaster",
      "title": "包耗材使用配置规则条件下明细内容",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PCMUsingCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材配置编号",
          "description": "包耗材配置编号"
        },
        {
          "key": "",
          "field": "PCMCfgRuleCondSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材配置编号",
          "description": "包耗材使用配置的规则条件编号"
        },
        {
          "key": "",
          "field": "PCMBarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包耗材条码",
          "description": "包耗材条码"
        },
        {
          "key": "",
          "field": "PCMName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包耗材名称",
          "description": "包耗材名称，冗余"
        },
        {
          "key": "",
          "field": "PCMQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "使用数量",
          "description": "使用数量"
        }
      ]
    },
    {
      "name": "PCMUsingData",
      "sheet": "CWMMaster",
      "title": "包耗材使用及盘点数据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PCMBarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包耗材条码",
          "description": "包耗材条码"
        },
        {
          "key": "",
          "field": "PCMName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包耗材名称",
          "description": "包耗材名称，冗余"
        },
        {
          "key": "",
          "field": "LastCheckDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上一次盘点时间",
          "description": "上一次盘点时间"
        },
        {
          "key": "",
          "field": "ThisCheckDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "本次盘点时间",
          "description": "本次盘点时间"
        },
        {
          "key": "",
          "field": "TheoryUseQtyCalcDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "理论使用数量计算时间",
          "description": "理论使用数量计算时间"
        },
        {
          "key": "",
          "field": "TheoryUseQtyCalcStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=未计算,\n50=Calculating=计算中,\n100=CalcSuccess=计算成功,\n-1=CalcFail=计算失败",
          "need_index": "",
          "title": "理论使用数量计算状态",
          "description": "理论使用数量计算状态"
        },
        {
          "key": "",
          "field": "TheoryUseQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "理论使用数量",
          "description": "两段时间之间理论使用数量"
        },
        {
          "key": "",
          "field": "OSQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "高位出库数量",
          "description": "两段时间之间高位出库数量"
        },
        {
          "key": "",
          "field": "LastTempZoneRemainQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上一次暂存区剩余数量",
          "description": "上一次暂存区剩余数量"
        },
        {
          "key": "",
          "field": "ThisTempZoneRemainQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "本次暂存区剩余数量",
          "description": "本次暂存区剩余数量"
        },
        {
          "key": "",
          "field": "ThisPICTotalQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前有效库位库存总数",
          "description": "当前有效库位库存总数"
        },
        {
          "key": "",
          "field": "ThisCheckUseName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "盘点人名",
          "description": "盘点人名"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductSN",
      "sheet": "CWMMaster",
      "title": "商品序列号记录表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "SN",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "序列号",
          "description": "序列号"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "入库单号",
          "description": "入库单号"
        },
        {
          "key": "",
          "field": "ReturnWaybillNumber",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "销退运单号",
          "description": "销退运单号，不为null表示销退，为null表示PO入库"
        },
        {
          "key": "",
          "field": "ISUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库者",
          "description": "入库者"
        },
        {
          "key": "",
          "field": "ISUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库名",
          "description": "入库名"
        },
        {
          "key": "",
          "field": "ISDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "入库时间",
          "description": "入库时间"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "BO编号",
          "description": "BO编号"
        },
        {
          "key": "",
          "field": "OSUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出库人",
          "description": "出库人"
        },
        {
          "key": "",
          "field": "OSUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出库人名",
          "description": "出库人名"
        },
        {
          "key": "",
          "field": "OSDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，删除就标为无效"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        }
      ]
    },
    {
      "name": "ShipCollectCfgMaster",
      "sheet": "CWMMaster",
      "title": "快递揽收配置主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ConfigName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配置名称",
          "description": "配置名称"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "开始时间",
          "description": "开始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "结束时间",
          "description": "结束时间"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipCollectCfgThirdEC",
      "sheet": "CWMMaster",
      "title": "快递揽收平台配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "MasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "配置编号",
          "description": "配置名称"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "电商平台",
          "description": "电商平台,\"0\"代表其他所有平台，有平台取指定平台，未配置就取\"0\""
        },
        {
          "key": "",
          "field": "RuleName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "策略名称",
          "description": "策略名称"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "优先级",
          "description": "优先级"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "是否开启提前回传",
          "description": "是否开启提前回传"
        },
        {
          "key": "",
          "field": "StartCollectTime",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "开始自动揽收的时间",
          "description": "开始自动揽收的时间(HH:mm)，每天从此配置时间开始做自动揽收"
        },
        {
          "key": "",
          "field": "EndCollectTime",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "结束自动揽收的时间",
          "description": "结束自动揽收的时间(HH:mm)，每天从此配置时间开始停止自动揽收"
        },
        {
          "key": "",
          "field": "ExecDataType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=AfterHours=超过多少时间,\n1=TimeRegion=符合条件时间段",
          "need_index": "",
          "title": "执行数据条件",
          "description": "执行数据条件"
        },
        {
          "key": "",
          "field": "ExecDataFields",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=PayDate=支付时间,\n1=InDate=到库时间,\n2=ConfirmDate=回传时间,\n3=LatestDeliveryTime=最晚发货时间",
          "need_index": "",
          "title": "执行数据字段",
          "description": "执行数据字段"
        },
        {
          "key": "",
          "field": "CollectAfterHours",
          "type": "DECIMAL(3,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "超过多少小时后开始揽收",
          "description": "超过多少小时后开始揽收，CollectAfterHours=0"
        },
        {
          "key": "",
          "field": "RegionStartDay",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=Yesterday=昨天,\n0=Today=今天",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "RegionStartTime",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "开始自动揽收的时间",
          "description": "开始自动揽收的时间(HH:mm)，每天从此配置时间开始做自动揽收"
        },
        {
          "key": "",
          "field": "RegionEndTime",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "结束自动揽收的时间",
          "description": "结束自动揽收的时间(HH:mm)，每天从此配置时间开始停止自动揽收"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipCollectCfgVendor",
      "sheet": "CWMMaster",
      "title": "快递揽收商户店铺配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "MasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "配置编号",
          "description": "配置名称"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "VendorThirECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "店铺编号",
          "description": "店铺编号，如果配置了店铺，优先取店铺"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipTimeReq",
      "sheet": "CWMMaster",
      "title": "快递时效要求,抖音对到各个城市的揽收-签收时效要求",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市名",
          "description": "市名"
        },
        {
          "key": "",
          "field": "RequestDay",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "要求天数",
          "description": "要求天数"
        }
      ]
    },
    {
      "name": "ThirdUnit",
      "sheet": "CWMMaster",
      "title": "城配-第三方计量单位",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ERPSystem",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=NoErp=无ERP,\n1=OpenAPI=OpenAPI接入,\n2=ERP_JST=聚水潭,\n3=ERP_WDT=旺店通,\n4=ERP_WDGJ=网店管家,\n5=ERP_GY=管易&E店管家,\n6=ERP_JKY=吉客云,\n7=ERP_YY=用友,\n40=ERP_CJT=畅捷通,\n100=FlytoOMS=飞驼OMS,\n999=Other=其他",
          "need_index": "Y",
          "title": "商户ERP",
          "description": "商户ERP,通用编码表"
        },
        {
          "key": "",
          "field": "SCSysNo",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "客户公司编号",
          "description": "客户公司的系统编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货主编号",
          "description": "货主编号"
        },
        {
          "key": "",
          "field": "UnitCode",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "编码",
          "description": "编码"
        },
        {
          "key": "",
          "field": "UnitName",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "计量单位名称",
          "description": "计量单位名称"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "IsSingleUnit",
          "type": "TINYINT",
          "required": "NULL",
          "default": "1",
          "remark": "1=Yes=是,\n0=No=否",
          "need_index": "",
          "title": "是否单计量",
          "description": "是否单计量，单计量就是只有1层（比如1箱24瓶，这里单位是箱）"
        },
        {
          "key": "",
          "field": "GroupName",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计量单位组名称",
          "description": "计量单位组名称，比如 箱>件(换算率2)>瓶(换算率12),这三个单位（三行数据）都是同一个组名"
        },
        {
          "key": "",
          "field": "IsMainUnit",
          "type": "TINYINT",
          "required": "NULL",
          "default": "0",
          "remark": "1=Yes=是,\n0=No=否",
          "need_index": "",
          "title": "是否主要计量",
          "description": "是否主要计量"
        },
        {
          "key": "",
          "field": "ChangeRate",
          "type": "DECIMAL(14,2)",
          "required": "NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "换算率",
          "description": "换算率"
        },
        {
          "key": "",
          "field": "LeafFlag",
          "type": "TINYINT",
          "required": "",
          "default": "",
          "remark": "1=Yes=是,\n0=No=否",
          "need_index": "",
          "title": "是否叶子节点",
          "description": "是否叶子节点"
        },
        {
          "key": "",
          "field": "LeafChangeRate",
          "type": "DECIMAL(14,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "与叶子节点换算率",
          "description": "与叶子节点换算率"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "编辑时间",
          "description": "编辑时间"
        }
      ]
    },
    {
      "name": "ThirdPartner",
      "sheet": "CWMMaster",
      "title": "城配-第三方往来单位，包含客户/供应商  > Customer/Supplier",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ERPSystem",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=NoErp=无ERP,\n1=OpenAPI=OpenAPI接入,\n2=ERP_JST=聚水潭,\n3=ERP_WDT=旺店通,\n4=ERP_WDGJ=网店管家,\n5=ERP_GY=管易&E店管家,\n6=ERP_JKY=吉客云,\n7=ERP_YY=用友,\n40=ERP_CJT=畅捷通,\n100=FlytoOMS=飞驼OMS,\n999=Other=其他",
          "need_index": "Y",
          "title": "商户ERP",
          "description": "商户ERP,通用编码表"
        },
        {
          "key": "",
          "field": "SCSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "客户公司编号",
          "description": "客户公司的系统编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货主编号",
          "description": "货主编号"
        },
        {
          "key": "",
          "field": "PartnerCode",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "往来单位编码",
          "description": "往来单位编码"
        },
        {
          "key": "",
          "field": "PartnerName",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "往来单位名称",
          "description": "往来单位名称，客户或是供应商的名称"
        },
        {
          "key": "",
          "field": "Province",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "省份",
          "description": "省份"
        },
        {
          "key": "",
          "field": "City",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "城市",
          "description": "城市"
        },
        {
          "key": "",
          "field": "District",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区县",
          "description": "区县"
        },
        {
          "key": "",
          "field": "ShipmentAddress",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "到货地址",
          "description": "到货地址"
        },
        {
          "key": "",
          "field": "Contact",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系人",
          "description": "联系人"
        },
        {
          "key": "",
          "field": "MobilePhone",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "手机号",
          "description": "手机号"
        },
        {
          "key": "",
          "field": "TelephoneNo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "PartnerType",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "0=Vendor=供应商\n1=Customer=客户\n2=Both=客户/供应商",
          "need_index": "",
          "title": "类型",
          "description": "类型，指档案的客商性质"
        },
        {
          "key": "",
          "field": "GaodeAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "高德地址",
          "description": "高德地址，用来确定经纬度"
        },
        {
          "key": "",
          "field": "Longitude",
          "type": "DECIMAL(10,6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "经度",
          "description": "经度，小数点后不超过6位"
        },
        {
          "key": "",
          "field": "Latitude",
          "type": "DECIMAL(10,6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "纬度",
          "description": "纬度，小数点后不超过6位"
        },
        {
          "key": "",
          "field": "AccountName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "开户名称",
          "description": "开户名称"
        },
        {
          "key": "",
          "field": "BankName",
          "type": "VARCHAR(60)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "开户银行",
          "description": "开户银行"
        },
        {
          "key": "",
          "field": "BankAccount",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "银行账号",
          "description": "银行账号"
        },
        {
          "key": "",
          "field": "ReturnReceiptColor",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送回执单颜色",
          "description": "配送回执单颜色（红，蓝，白，黄）可多选"
        },
        {
          "key": "",
          "field": "AppointmentFlag",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=Yes=是",
          "need_index": "",
          "title": "预约类型",
          "description": "预约类型：无需预约（默认）/需要预约"
        },
        {
          "key": "",
          "field": "DeliveryNote",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "送货备注",
          "description": "送货备注"
        },
        {
          "key": "",
          "field": "MinExpiryDays",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期要求最低天数",
          "description": "效期要求最低天数"
        },
        {
          "key": "",
          "field": "ReplaceReceiptFlag",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=Yes=是",
          "need_index": "",
          "title": "是否需更换客户配送单",
          "description": "是否需更换客户配送单"
        },
        {
          "key": "",
          "field": "HideUnitPriceFlag",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=Yes=是",
          "need_index": "",
          "title": "配送单是否隐藏单价",
          "description": "配送单是否隐藏单价"
        },
        {
          "key": "",
          "field": "UpStairPrice",
          "type": "DECIMAL(8,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上楼费",
          "description": "上楼费"
        },
        {
          "key": "",
          "field": "GeolocUpdateTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "地理信息更新时间",
          "description": "地理信息更新时间"
        },
        {
          "key": "",
          "field": "UpdateAddressInfo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改地址信息",
          "description": "修改地址信息，在司机端更新单位定位后，需要在PC二次确认后才进行实际修改"
        },
        {
          "key": "",
          "field": "UpdateAddressLonLat",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改地址信息经纬度",
          "description": "修改地址信息经纬度"
        },
        {
          "key": "",
          "field": "UpdateAddressMemo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改地址信息备注",
          "description": "修改地址信息备注"
        },
        {
          "key": "",
          "field": "UpdateAddressStatus",
          "type": "TINYINT",
          "required": "NULL",
          "default": "0",
          "remark": "0=NotUpdated=未更新,\n1=WaitAudit=待审核,\n2=Updated=已更新,\n-1=AuditFailed=未通过",
          "need_index": "",
          "title": "修改地址信息状态",
          "description": "修改地址信息状态"
        },
        {
          "key": "",
          "field": "Ts",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "时间戳",
          "description": "时间戳"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者编号",
          "description": "创建者编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者姓名",
          "description": "创建者姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人编号",
          "description": "修改人编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人姓名",
          "description": "修改人姓名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "Vehicle",
      "sheet": "CWMMaster",
      "title": "城配-车辆信息表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SCSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "客户公司编号",
          "description": "客户公司的系统编号"
        },
        {
          "key": "",
          "field": "LicencePlate",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "车辆号牌",
          "description": "车辆号牌"
        },
        {
          "key": "",
          "field": "LoadWeight",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆载重",
          "description": "车辆载重，最大荷载载重，核定载重，不含车重，单位：kg"
        },
        {
          "key": "",
          "field": "LoadRate",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0.9",
          "remark": "",
          "need_index": "",
          "title": "车辆最大装载率",
          "description": "车辆最大装载率：每辆车可以设置最大装载率，默认为90%，最大不能超过100%（不可超载）；"
        },
        {
          "key": "",
          "field": "LoadVolume",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆装载体积",
          "description": "车辆装载体积，最大荷载体积，净载体积，单位：立方"
        },
        {
          "key": "",
          "field": "LoadLength",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆装载长度",
          "description": "车辆装载长度，车厢长度，单位：米"
        },
        {
          "key": "",
          "field": "LoadWidth",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆装载宽度",
          "description": "车辆装载宽度，车厢宽度，单位：米"
        },
        {
          "key": "",
          "field": "LoadHeight",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆装载高度",
          "description": "车辆装载高度，车厢高度，单位：米"
        },
        {
          "key": "",
          "field": "LoadType",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=普通\n1=ColdChain=冷链运输",
          "need_index": "",
          "title": "车辆装载类型",
          "description": "车辆装载类型，车辆货厢类型，如普通、冷链运输"
        },
        {
          "key": "",
          "field": "VehicleType",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=FUEL=普通货车\n1=BEV=纯电动货车\n2=PHEV=插电混动货车",
          "need_index": "",
          "title": "车型",
          "description": "车辆类型说明。\n对应高德CarType：\n0：普通货车（默认值）\n1：纯电动货车\n2：插电混动货车"
        },
        {
          "key": "",
          "field": "VehicleSize",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "2",
          "remark": "1=Micro=微型货车\n2=Light=轻型货车\n3=Medium=中型货车\n4=Heavy=重型货车",
          "need_index": "",
          "title": "尺寸",
          "description": "车辆尺寸说明。\n高德此分类依据国标。\n1：微型车，车长小于等于3.5m，总质量小于等于1800kg。\n2：轻型车，车长小于6m，总质量小于4500kg\n3：中型车，车长大于等于6m，总质量大于等于4500kg且小于12000kg。\n4：重型车，车长大于等于6m，总质量大于等于12000kg。"
        },
        {
          "key": "",
          "field": "VehicleLength",
          "type": "DECIMAL(10,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆高度",
          "description": "车辆高度，单位米"
        },
        {
          "key": "",
          "field": "VehicleWidth",
          "type": "DECIMAL(10,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆宽度",
          "description": "车辆宽度，单位米"
        },
        {
          "key": "",
          "field": "VehicleHeight",
          "type": "DECIMAL(10,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆高度",
          "description": "车辆高度，单位米"
        },
        {
          "key": "",
          "field": "VehicleWeight",
          "type": "DECIMAL(10,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆重量",
          "description": "车辆重量，车辆净重，不含货物重量。"
        },
        {
          "key": "",
          "field": "VehicelPicUrl",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车辆照片",
          "description": "车辆照片"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "VehicleStatus",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "0=Idle=空闲\n1=Transit=运输中\n2=DeActived=停用",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "DefaultDriverSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "默认司机编号",
          "description": "默认司机编号"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者编号",
          "description": "创建者编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者姓名",
          "description": "创建者姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人编号",
          "description": "修改人编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人姓名",
          "description": "修改人姓名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "Driver",
      "sheet": "CWMMaster",
      "title": "城配-司机信息表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SCSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "客户公司编号",
          "description": "客户公司的系统编号"
        },
        {
          "key": "",
          "field": "PTID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "平台的单据ID",
          "description": "平台的单据ID,平台生成的唯一ID"
        },
        {
          "key": "",
          "field": "Name",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "司机姓名",
          "description": "司机姓名"
        },
        {
          "key": "",
          "field": "Phone",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "手机号码",
          "description": "手机号码，也是司机登录的账号"
        },
        {
          "key": "",
          "field": "Pwd",
          "type": "VARCHAR(64)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "密码",
          "description": "密码，默认是身份证后6位"
        },
        {
          "key": "",
          "field": "IDNumber",
          "type": "VARCHAR(18)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "身份证号码",
          "description": "身份证号码"
        },
        {
          "key": "",
          "field": "LicenseNumber",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "驾驶证号码",
          "description": "驾驶证号码"
        },
        {
          "key": "",
          "field": "LicenseType",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "驾驶证类型",
          "description": "驾驶证类型（如A1、B2）"
        },
        {
          "key": "",
          "field": "LicensePicUrl",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "驾驶证照片",
          "description": "驾驶证照片"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者编号",
          "description": "创建者编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者姓名",
          "description": "创建者姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人编号",
          "description": "修改人编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人姓名",
          "description": "修改人姓名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "PSOMaster",
      "sheet": "CWMOMS",
      "title": "订单主信息（如果要做跨境，则跨境方面信息单独建表）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号，来源于外部ID"
        },
        {
          "key": "",
          "field": "SORelCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单相关编号",
          "description": "订单相关编号，来源于外部ID，如其它线上编号"
        },
        {
          "key": "",
          "field": "ERPTradeNo",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "ERP订单编号",
          "description": "ERP订单编号，交易单号，旺店通JY单号，聚水潭订单号"
        },
        {
          "key": "",
          "field": "SOType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=B2COrder=2C订单,\n2=B2BOrder=2B订单,\n9=OtherOrder=其它订单",
          "need_index": "Y",
          "title": "订单类型",
          "description": "订单类型，1=-正常2C订单，2=正常2B订单（比如自提，第三方自提门店订单等），也对应奇门对接里B2B订单，9=其它未归类"
        },
        {
          "key": "",
          "field": "ErpOrderType",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "ERP的OrderType",
          "description": "ERP 的OrderType,主要用于记录，然后回传ERP使用"
        },
        {
          "key": "",
          "field": "PreSORelCodes",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "换货出库原单号",
          "description": "换货出库原单号：原出库单号(ERP分配)，原出库单号(WMS分配)"
        },
        {
          "key": "",
          "field": "PSOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态,\n20=WaitOS=已审待出库,\n50=OnOutStocking=出库中,\n100=Completed=已出库,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "订单状态",
          "description": "0=Init=初始态,\n20=WaitOS=已审待出库,\n50=OnOutStocking=出库中,\n100=Completed=已出库,\n-1=Void=已作废"
        },
        {
          "key": "",
          "field": "ChildSOCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "子单数量",
          "description": "子单数量"
        },
        {
          "key": "",
          "field": "TradeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通电商,\n1=FAT=跨境电商",
          "need_index": "Y",
          "title": "贸易类型",
          "description": "贸易类型"
        },
        {
          "key": "",
          "field": "OwnerCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ERP货主编号",
          "description": "ERP货主编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID,冗余",
          "description": "电商平台ID"
        },
        {
          "key": "",
          "field": "VendorThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户电商配置编号",
          "description": "商户电商配置编号"
        },
        {
          "key": "",
          "field": "ThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称，冗余显示用"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回推状态确认",
          "description": "回推状态确认"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传时间",
          "description": "回传奇门成功时记录回传时间"
        },
        {
          "key": "",
          "field": "ThirdCustomerId",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "第三方用户ID",
          "description": "第三方用户ID"
        },
        {
          "key": "",
          "field": "SODate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单时间",
          "description": "订单时间"
        },
        {
          "key": "",
          "field": "PayDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "支付时间",
          "description": "支付时间"
        },
        {
          "key": "",
          "field": "PaySerialNumber",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "支付流水号",
          "description": "支付流水号"
        },
        {
          "key": "",
          "field": "PayTypeId",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "支付类型",
          "description": "支付类型"
        },
        {
          "key": "",
          "field": "PayTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "支付名称",
          "description": "支付名称"
        },
        {
          "key": "",
          "field": "SOEstVolume",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包裹估算体积",
          "description": "订单包裹体积(立方厘米)，初步计算出来的"
        },
        {
          "key": "",
          "field": "SOWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单重量",
          "description": "订单重量"
        },
        {
          "key": "",
          "field": "PackageCount",
          "type": "int",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹数量",
          "description": "包裹数量"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "'",
          "remark": "",
          "need_index": "",
          "title": "包装箱ID",
          "description": "包装箱ID"
        },
        {
          "key": "",
          "field": "PackageWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量",
          "description": "包裹重量，WMS写入"
        },
        {
          "key": "",
          "field": "PackageLength",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹长",
          "description": ""
        },
        {
          "key": "",
          "field": "PackageWidth",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹宽",
          "description": ""
        },
        {
          "key": "",
          "field": "PackageHeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹高",
          "description": ""
        },
        {
          "key": "",
          "field": "OriginShipTypeID",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单原始物流ID",
          "description": "订单原始物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "DeliveryType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通配送,\n1=ColdDelivery=冷链配送,\n2=EnvDelivery=环保配送",
          "need_index": "",
          "title": "发货服务类",
          "description": "发货服务类"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "WaybillNumberAreaCode",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单三段码",
          "description": "运单快递区域编码运单三段码或大头笔信息"
        },
        {
          "key": "",
          "field": "WaybillResponse",
          "type": "VARCHAR(4000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单号获取物流反馈",
          "description": "运单号获取物流反馈"
        },
        {
          "key": "",
          "field": "WaybillOptMsg",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单说明",
          "description": "运单处理消息：获取运单如果有异常则把异常内容部分写入；正常后重新置空；切换时在前面插入已切换文字。"
        },
        {
          "key": "",
          "field": "WaybillShipCfgSysNo",
          "type": "int",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "电子面单配置SysNo",
          "description": "记录获取运单时使用的店铺电子面单配置"
        },
        {
          "key": "",
          "field": "AuditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "审核时间",
          "description": "审核时间"
        },
        {
          "key": "",
          "field": "SOAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单金额",
          "description": "订单金额"
        },
        {
          "key": "",
          "field": "ProductAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品金额",
          "description": "商品金额"
        },
        {
          "key": "",
          "field": "DiscountAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "折扣金额",
          "description": "折扣金额"
        },
        {
          "key": "",
          "field": "Tax",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品税",
          "description": "商品税"
        },
        {
          "key": "",
          "field": "InsuredAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保费",
          "description": "保费"
        },
        {
          "key": "",
          "field": "InsuredChargeTax",
          "type": "DECIMAL(18, 6)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保费税",
          "description": "保费税"
        },
        {
          "key": "",
          "field": "ShippingCharge",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运费金额",
          "description": "运费金额"
        },
        {
          "key": "",
          "field": "ShippingChargeTax",
          "type": "DECIMAL(18, 6)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运费税",
          "description": "运费税"
        },
        {
          "key": "",
          "field": "WMSShippingCharge",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "仓库运费",
          "description": "仓库实际运费，核算用"
        },
        {
          "key": "",
          "field": "LockFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=VoidLock=作废拦截 ,\n2=ShipLock=物流停发锁定,\n9=HoldLock=暂停锁定",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识"
        },
        {
          "key": "",
          "field": "LockReason",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "锁定原因",
          "description": "锁定原因"
        },
        {
          "key": "",
          "field": "LockSOStatus",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "0=Init=初始态,\n20=WaitOS=待出库, \n50=OnOutStocking=出库中, \n100=Completed=已出库,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "锁定时订单状态",
          "description": "锁定时订单状态，使用的VendorSOStatus"
        },
        {
          "key": "",
          "field": "ReceiveAreaGBCode",
          "type": "VARCHAR(6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地区编码",
          "description": "收货地区编码"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区",
          "description": "区"
        },
        {
          "key": "",
          "field": "ReceiveAddress",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货详细地址",
          "description": "收货详细地址"
        },
        {
          "key": "",
          "field": "ReceiveName",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系姓名",
          "description": "联系姓名"
        },
        {
          "key": "",
          "field": "ReceivePhone",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "ReceiveZip",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货邮编",
          "description": "收货邮编"
        },
        {
          "key": "",
          "field": "OAID",
          "type": "VARCHAR(128)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "奇门OAID",
          "description": "奇门OAID"
        },
        {
          "key": "",
          "field": "BuyerNick",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "买家昵称",
          "description": "买家昵称"
        },
        {
          "key": "",
          "field": "BuyerNote",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "买家留言",
          "description": "买家留言"
        },
        {
          "key": "",
          "field": "SellerNote",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "卖家留言",
          "description": "卖家留言"
        },
        {
          "key": "",
          "field": "SOItemType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=OneItemSingle=单件订单,\n2=OneItemMulti=单品多件,\n3=Multi=多品订单",
          "need_index": "",
          "title": "订单结构类型",
          "description": "订单结构类型，创建订单时，需要判断出订单结构"
        },
        {
          "key": "",
          "field": "SOItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "SOItemsQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "SameStructureKey",
          "type": "Varchar(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "同构订单Key",
          "description": "同构订单Key，创建订单时就解析写入,先按商品编号顺序排序，计算Key=商品编号-数量_商品编号-数量_****；\n再将Key取32位的Hash值作为真正的Key值"
        },
        {
          "key": "",
          "field": "SameStructureName",
          "type": "Varchar(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "同构订单名称",
          "description": "同构订单名称"
        },
        {
          "key": "",
          "field": "PTagSysNo",
          "type": "Varchar(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "标签编号",
          "description": "商品标签编号，多个用逗号分隔，前后加逗号，同UPC"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "SOIssueTaskUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "生成任务用户",
          "description": "生成任务用户"
        },
        {
          "key": "",
          "field": "SOIssueTaskDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "生成任务时间",
          "description": "生成任务时间"
        },
        {
          "key": "",
          "field": "SOPickedUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成拣货用户",
          "description": "完成拣货用户"
        },
        {
          "key": "",
          "field": "SOPickedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成拣货时间",
          "description": "完成拣货时间"
        },
        {
          "key": "",
          "field": "SOSecondPickedUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成二分用户",
          "description": "完成二分用户"
        },
        {
          "key": "",
          "field": "SOSecondPickedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成二次分拣时间",
          "description": "完成二次分拣时间，同构波次、标准波次的单品，二分时间和打包时间是一样的"
        },
        {
          "key": "",
          "field": "SOPackagedUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成打包用户",
          "description": "完成打包用户"
        },
        {
          "key": "",
          "field": "SOPackagedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成打包时间",
          "description": "完成打包时间"
        },
        {
          "key": "",
          "field": "SOOutStockDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出库时间",
          "description": "出库时间"
        },
        {
          "key": "",
          "field": "ShipCollectedFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=未揽收, \n5=HasSubscribe=已订阅,\n10=HasCollected=已揽收",
          "need_index": "",
          "title": "是否揽收",
          "description": "是否揽收，根据是否有快递路由信息"
        },
        {
          "key": "",
          "field": "ShipCollectedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "揽收时间",
          "description": "揽收时间"
        },
        {
          "key": "",
          "field": "SOVersion",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "版本号",
          "description": "版本号 用于更新获取运单"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PSOItem",
      "sheet": "CWMOMS",
      "title": "订单商品详情",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOMasterSysNo",
          "description": "SOMasterSysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品SysNo",
          "description": "商品SysNo"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号，可以根据批号精准出库"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品单位",
          "description": "商品单位"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "商品数量"
        },
        {
          "key": "",
          "field": "Price",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品价格",
          "description": "商品价格"
        },
        {
          "key": "",
          "field": "HSCode",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "HSCode",
          "description": "HSCode"
        }
      ]
    },
    {
      "name": "MSOMaster",
      "sheet": "CWMOMS",
      "title": "子订单主信息（如果要做跨境，则跨境方面信息单独建表）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "PSOSysNo",
          "description": "OMS PSOMaster.SysNo"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "序号",
          "description": "序号，用于批量处理"
        },
        {
          "key": "",
          "field": "MultiChildFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=OnlyOne=唯一子订单,\n1=Multi=多子订单",
          "need_index": "Y",
          "title": "多子订单标识",
          "description": "是否多个子订单"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号，来源于外部ID"
        },
        {
          "key": "",
          "field": "MSOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态,\n5=Audited=已获取运单,\n10=AllAudited=全部获取运单,\n20=WaitOS=已下发待出库,50=OnPicking=拣货中,\n50=OnOutStocking=出库中,\n100=Completed=已出库,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "订单状态",
          "description": "MSO状态：0=初始态：PSO拆单后就是初始态;\n5=获取运单中：第一个子单获取运单;\n10=全部获取运单：所有子单都获取运单后更新;\n20=已下发待出库：已下发INV后更新;\n50=出库中:INV的SO进入波次;\n100=已出库;\n-1=已作废 ;"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "SOAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单金额",
          "description": "订单金额"
        },
        {
          "key": "",
          "field": "SOWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单重量",
          "description": "订单重量"
        },
        {
          "key": "",
          "field": "PackageCount",
          "type": "int",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹数量",
          "description": "包裹数量"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "ShipTypeMSN",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递MSN",
          "description": "快递MSN"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "WaybillNumberAreaCode",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单三段码",
          "description": "运单快递区域编码运单三段码或大头笔信息"
        },
        {
          "key": "",
          "field": "WaybillResponse",
          "type": "VARCHAR(4000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单号获取物流反馈",
          "description": "运单号获取物流反馈"
        },
        {
          "key": "",
          "field": "WaybillOptMsg",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单说明",
          "description": "运单处理消息：获取运单如果有异常则把异常内容部分写入；正常后重新置空；切换时在前面插入已切换文字。"
        },
        {
          "key": "",
          "field": "WaybillShipCfgSysNo",
          "type": "int",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "电子面单配置SysNo",
          "description": "记录获取运单时使用的店铺电子面单配置"
        },
        {
          "key": "",
          "field": "WaybillDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "获取运单时间",
          "description": "获取运单时间"
        },
        {
          "key": "",
          "field": "SOItemType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=OneItemSingle=单件订单,\n2=OneItemMulti=单品多件,\n3=Multi=多品订单",
          "need_index": "",
          "title": "订单结构类型",
          "description": "订单结构类型，创建订单时，需要判断出订单结构"
        },
        {
          "key": "",
          "field": "SOItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "SOItemsQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "SameStructureKey",
          "type": "Varchar(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "同构订单Key",
          "description": "同构订单Key，创建订单时就解析写入,先按商品编号顺序排序，计算Key=商品编号-数量_商品编号-数量_****；\n再将Key取32位的Hash值作为真正的Key值"
        },
        {
          "key": "",
          "field": "SameStructureName",
          "type": "Varchar(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "同构订单名称",
          "description": "同构订单名称"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "SOVersion",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "版本号",
          "description": "版本号 用于更新获取运单"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "MSOItem",
      "sheet": "CWMOMS",
      "title": "子订单商品详情",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "OMS PSOMaster.SysNo",
          "description": "OMS PSOMaster.SysNo"
        },
        {
          "key": "",
          "field": "MSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOMasterSysNo",
          "description": "SOMasterSysNo"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "序号",
          "description": "序号，用于批量处理"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品SysNo",
          "description": "商品SysNo"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号，可以根据批号精准出库"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品单位",
          "description": "商品单位"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "商品数量"
        },
        {
          "key": "",
          "field": "Price",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品价格",
          "description": "商品价格"
        },
        {
          "key": "",
          "field": "HSCode",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "HSCode",
          "description": "HSCode"
        },
        {
          "key": "",
          "field": "ActualOSJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实际出库批次信息",
          "description": "实际出库批次信息"
        }
      ]
    },
    {
      "name": "MSOPTagItem",
      "sheet": "CWMOMS",
      "title": "订单商品标记",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "OMS PSOMaster.SysNo",
          "description": "OMS PSOMaster.SysNo"
        },
        {
          "key": "",
          "field": "MSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "MSOSysNo",
          "description": "OMS  MSOSysNo"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "序号",
          "description": "序号，用于批量处理"
        },
        {
          "key": "",
          "field": "PTagSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品标记编号",
          "description": "商品标记编号"
        }
      ]
    },
    {
      "name": "ProductInv",
      "sheet": "CWMInv",
      "title": "SKU库存表，所有的QTY数字均为正数，按业务逻辑进行加减，商品创建时新增记录，与商品一一对应",
      "fields": [
        {
          "key": "PK",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "StockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "在仓数量",
          "description": "正品在仓数量：实际库存数量，入仓上架增加，出库时减少。\n(1) 总库存表.StockQty = 总库存.AvailableQty + 总库存.OccupyQty\n(2) 总库存表.StockQty = SUM(库位库存.StockQty) + 总库存.PickedOnlyQty"
        },
        {
          "key": "",
          "field": "AvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "可用库存",
          "description": "可以销售作业的数量：商品入仓上架时增加；订单入仓时扣减；"
        },
        {
          "key": "",
          "field": "ImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "次品数量",
          "description": "次品数量"
        },
        {
          "key": "",
          "field": "WasteQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "废品数量",
          "description": "废品数量"
        },
        {
          "key": "",
          "field": "OrderOccupyQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "订单占用数量",
          "description": "订单占用数量：订单入仓时被占用的数量，订单出库时释放"
        },
        {
          "key": "",
          "field": "OtherOccupyQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "其它占用数量",
          "description": "其它占用数量：特殊处理被占用的数量，是需要处理的数量"
        },
        {
          "key": "",
          "field": "PickedOnlyQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "已拣货未出库的数量",
          "description": "已拣货未出库的数量 ，当每个拣货任务完成时，该字段需要+=这个任务在各库位的拣货数量，出库时，需要与订单占用数量一同释放掉。"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductInvCell",
      "sheet": "CWMInv",
      "title": "SKU库位库存表，所有的QTY数字均为正数；如果库位上某商品StockQty为0时，需要删除该条记录；商品上货架时增加记录或更新记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库位ID",
          "description": "库位ID:XX-XXX-XX-XXX-X,也等于Cell的BarCode,(XX库区XXX排XX层XXX格-X)"
        },
        {
          "key": "",
          "field": "StorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣,\n1=Box=料箱,\n2=Pallet=托盘,\n3=GroundHeap=地堆",
          "need_index": "Y",
          "title": "库位类型",
          "description": "库位类型，零拣库和地堆库均为混合存放模式，料箱库为按商品一库一箱存放模式，立体库位按商品一库一托存放模式。"
        },
        {
          "key": "",
          "field": "StorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库区ID",
          "description": "库区ID"
        },
        {
          "key": "",
          "field": "AutoFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Manu=人工库区,\n1=Auto=自动化库区,\n2=Robot=机器人库区",
          "need_index": "Y",
          "title": "库区形式",
          "description": "库区形式"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "良残标识（冗余)"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "RecDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货日期",
          "description": "收货日期，用于没有效期的商品，基于收货日期先进先出"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量，没有箱规则为0，没有设置箱规的商品不能入托盘库"
        },
        {
          "key": "",
          "field": "StockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "库位数量",
          "description": "库位实际数量，捡完货立即扣减"
        },
        {
          "key": "",
          "field": "AvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "可用库存",
          "description": "可用数量，创建完任务立即扣减"
        },
        {
          "key": "",
          "field": "TransferOccupyQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "货权转移占用数量",
          "description": "货权转移占用数量"
        },
        {
          "key": "",
          "field": "CheckLockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "锁定数量",
          "description": "盘点锁定数量，缺货时增加锁定数量扣减可用数量"
        },
        {
          "key": "",
          "field": "ProductInvCellStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Common=正常,\n2=Occupy=作业占用,\n21=Exception=异常冻结",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "CellLockFlag",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "0=Normal=正常, \n1=Locked=常规锁定,\n21=ExceptLock=异常锁定",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识"
        },
        {
          "key": "",
          "field": "BizDicSysNoes",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务字典编号",
          "description": "业务字典编号，多个逗号分割，主要用于处理退货登记次品"
        },
        {
          "key": "",
          "field": "BoxCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "箱码",
          "description": "箱码，料箱库时箱码"
        },
        {
          "key": "",
          "field": "BoxQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱数",
          "description": "箱数，料箱库时为1，如果是托盘，则是托盘上箱数"
        },
        {
          "key": "",
          "field": "PalletCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "托盘码",
          "description": "托盘码，托盘库时托盘"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库单号",
          "description": "入库单号，清点入库暂存区才有值"
        },
        {
          "key": "",
          "field": "SameStructureKey",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "套组同构key",
          "description": "套组同构key"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductInvCellBox",
      "sheet": "CWMInv",
      "title": "SKU库位中存放的1个或多个箱体明细，主要针对立体库存在一库位多箱，但为了统一，因此 Miniload和地堆库也同样方式存储（人工库可以先不考虑）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ProductInvCellSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "库位库存编号",
          "description": "库位库存编号"
        },
        {
          "key": "",
          "field": "BoxProductQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "本箱商品数量",
          "description": "本箱商品数量"
        },
        {
          "key": "",
          "field": "BoxCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "箱码",
          "description": "箱码"
        },
        {
          "key": "",
          "field": "mType",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "料箱货型",
          "description": "料箱货型"
        }
      ]
    },
    {
      "name": "POMaster",
      "sheet": "CWMInv",
      "title": "入库单主表，基于数据来源于ECC",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库单编号",
          "description": "PO编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "OwnerCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ERP货主编号",
          "description": "ERP货主编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "Vendor的SysNo",
          "description": "Vendor的SysNo"
        },
        {
          "key": "",
          "field": "POID",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "PO单号",
          "description": "PO单号,来源于商户方唯一的ID号"
        },
        {
          "key": "",
          "field": "ParentPOID",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "PO的父ID",
          "description": "PO的父ID"
        },
        {
          "key": "",
          "field": "TradeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通电商,\n1=FAT=跨境电商",
          "need_index": "Y",
          "title": "贸易类型",
          "description": "贸易类型"
        },
        {
          "key": "",
          "field": "POType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=PurchaseInStock=采购入库,\n2=ManufactInStock=生产入库,\n3=TransferInStock=调拨入库,\n4=ReturnInStock=订单退货入库,\n5=BOReturnInStock=出库单退货入库,\n9=OtherInStock=其它入库",
          "need_index": "Y",
          "title": "入库类型",
          "description": "入库类型，1=正常PO入库单，2=对应我们生产（组套）后入库的类型（原则上，商户发出生产出库单-拆套，再发出生产入库单-组套后入库)，3=仓库间调拨入库，4=订单退货入库，5=BO退货入库，9=其它未归类"
        },
        {
          "key": "",
          "field": "ErpOrderType",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "ERP的OrderType",
          "description": "ERP 的OrderType,主要用于记录，然后回传ERP使用"
        },
        {
          "key": "",
          "field": "POStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "-1=Void=已作废,\n20=WaitInStock=待入库,\n50=OnReceiving=收货中,\n100=Completed=已入库",
          "need_index": "Y",
          "title": "PO状态",
          "description": "PO状态字段,第一个相关收货任务创建，就变为50，PO完成为100需要为手动变更"
        },
        {
          "key": "",
          "field": "LockFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=VoidLock=作废锁定,\n9=HoldLock=暂停锁定",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识"
        },
        {
          "key": "",
          "field": "LockReason",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "锁定原因",
          "description": "锁定原因"
        },
        {
          "key": "",
          "field": "LockPOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "-1=Void=已作废,\n20=WaitInStock=待入库,\n50=OnReceiving=收货中,\n100=Completed=已入库",
          "need_index": "",
          "title": "锁定时PO状态",
          "description": "锁定时PO状态"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "VendorThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户电商配置编号",
          "description": "商户电商配置编号"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回推状态确认",
          "description": "回推状态确认"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "回传时间",
          "description": "回传时间"
        },
        {
          "key": "",
          "field": "ConfirmMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传备注",
          "description": "回传备注"
        },
        {
          "key": "",
          "field": "CompletedReceiveCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "已完成收货次数",
          "description": "已完成收货次数"
        },
        {
          "key": "",
          "field": "PISStartTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库开始时间",
          "description": "PO入库开始时间：第一条创建收货任务的时间"
        },
        {
          "key": "",
          "field": "PISCompletTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库完成时间",
          "description": "最终入库完成时间"
        },
        {
          "key": "",
          "field": "ExpectTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预约时间",
          "description": "预约时间"
        },
        {
          "key": "",
          "field": "ExpectCarNum",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预约车牌",
          "description": "预约车牌"
        },
        {
          "key": "",
          "field": "ExpectContacter",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预约联系人",
          "description": "预约联系人"
        },
        {
          "key": "",
          "field": "ExpectPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预约联系电话",
          "description": "预约联系电话"
        },
        {
          "key": "",
          "field": "ExpectMemo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预约备注",
          "description": "预约备注"
        },
        {
          "key": "",
          "field": "SenderCompany",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件方公司名",
          "description": "发件方公司名"
        },
        {
          "key": "",
          "field": "SenderContacter",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件方联系人",
          "description": "发件方联系人"
        },
        {
          "key": "",
          "field": "SenderPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件方电话",
          "description": "发件方电话"
        },
        {
          "key": "",
          "field": "SenderEmail",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件方邮箱",
          "description": "发件方邮箱"
        },
        {
          "key": "",
          "field": "SenderAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发件方详细地址",
          "description": "发件方详细地址"
        },
        {
          "key": "",
          "field": "ReceiverCompany",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件方公司名",
          "description": "收件方公司名"
        },
        {
          "key": "",
          "field": "ReceiverContacter",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件方联系人",
          "description": "收件方联系人"
        },
        {
          "key": "",
          "field": "ReceiverPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件方电话",
          "description": "收件方电话"
        },
        {
          "key": "",
          "field": "ReceiverEmail",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件方邮箱",
          "description": "收件方邮箱"
        },
        {
          "key": "",
          "field": "ReceiverAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件方详细地址",
          "description": "收件方详细地址"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "POItem",
      "sheet": "CWMInv",
      "title": "入库单商品明细表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "PO系统编号",
          "description": "PO系统编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品系统编号",
          "description": "商品表的SysNo"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "效期"
        },
        {
          "key": "",
          "field": "PurchaseQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "应收数量",
          "description": "采购应收数量"
        },
        {
          "key": "",
          "field": "ReceivedAvailableQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实际收货有效数量",
          "description": "实际收货数量：每次收货任务完成时更新"
        },
        {
          "key": "",
          "field": "ReceivedImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货次品数量",
          "description": "收货次品数量：每次收货任务完成时更新"
        },
        {
          "key": "",
          "field": "ReceivedWasteQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货废品数量",
          "description": "收货废品数量：每次收货任务完成时更新"
        },
        {
          "key": "",
          "field": "ReceiveDifferQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货短溢装总数量",
          "description": "收货短溢装总数量：PO完成时更新，少或者多出来的数量\n=ReceivedAvailableQty+ReceiveDamageQty+ReceiveWasteQty-PurchaseQty"
        },
        {
          "key": "",
          "field": "ERPOrderLine",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ERP行编号",
          "description": "ERP行编号"
        },
        {
          "key": "",
          "field": "OriginOSJson",
          "type": "VARCHAR(4000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库单记录的来源单据的行信息",
          "description": "入库单记录的来源单据的行信息"
        }
      ]
    },
    {
      "name": "POExtend",
      "sheet": "CWMInv",
      "title": "入库单扩展表（与POMaster是1对1关系，创建POMaster时也同时创建）。新增的和主体业务没关的字段都放在这里面，按需增加字段。",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库单编号",
          "description": "PO编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "PO系统编号",
          "description": "PO系统编号"
        },
        {
          "key": "",
          "field": "POType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=PurchaseInStock=采购入库,\n2=ManufactInStock=生产入库,\n3=TransferInStock=调拨入库,\n4=ReturnInStock = 退货入库, \n9=OtherInStock=其它入库",
          "need_index": "Y",
          "title": "入库类型",
          "description": "入库类型，和POMaster保持一致"
        },
        {
          "key": "",
          "field": "CBMQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "立方数",
          "description": "立方数"
        },
        {
          "key": "",
          "field": "WeightQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "吨数",
          "description": "吨数"
        },
        {
          "key": "",
          "field": "PalletQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "整托数",
          "description": "整托数"
        },
        {
          "key": "",
          "field": "BoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "零散箱数",
          "description": "零散箱数"
        },
        {
          "key": "",
          "field": "SpareQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "零散件数",
          "description": "零散件数"
        },
        {
          "key": "",
          "field": "NeedExtendParam",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否需要填写拓展参数",
          "description": "是否需要填写拓展参数"
        },
        {
          "key": "",
          "field": "QtyJson",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "统计数量的原生JSON",
          "description": "统计数量的原生JSON"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "BeforehandRecTask",
      "sheet": "CWMInv",
      "title": "预收货任务表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "预收货编号",
          "description": "预收货编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "PO系统编号",
          "description": "PO系统编号"
        },
        {
          "key": "",
          "field": "ReceiveTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货任务系统编号",
          "description": "收货任务系统编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "Vendor的SysNo",
          "description": "Vendor的SysNo"
        },
        {
          "key": "",
          "field": "VendorName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Vendor的Name",
          "description": "Vendor的Name"
        },
        {
          "key": "",
          "field": "BeforehandRecStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "10=OnChecking=清点中,\n50=CheckCompleted=清点完成,\n100=Completed=上架完成,\n-1=Void=作废",
          "need_index": "Y",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "BeforehandRecItem",
      "sheet": "CWMInv",
      "title": "预收货Item级别的清点记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BeforehandRecSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "预收货编号",
          "description": "预收货编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品SysNo",
          "description": "商品SysNo"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号，如果没有填批号但是填写了有效日期，批号则为有效日期的yyyyMMdd格式内容"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "ReceivedQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实收有效数量",
          "description": "实际收货的有效数量"
        },
        {
          "key": "",
          "field": "ImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实收次品数量",
          "description": "实收次品数量"
        },
        {
          "key": "",
          "field": "WasteQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实收废品数量",
          "description": "实收废品数量"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱规",
          "description": "批次箱规"
        },
        {
          "key": "",
          "field": "CommonCellID",
          "type": "VARCHAR(15)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架良品库位",
          "description": "上架良品库位"
        },
        {
          "key": "",
          "field": "ImperfectCellID",
          "type": "VARCHAR(15)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架次品库位",
          "description": "上架次品库位"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ReceiveTask",
      "sheet": "CWMInv",
      "title": "收货任务表，支持一个PO多次收货；也支持非PO收货",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "PO系统编号",
          "description": "PO系统编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "Vendor的SysNo",
          "description": "Vendor的SysNo"
        },
        {
          "key": "",
          "field": "ReceiveStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "20=OnSetting=上架设置中（清点收货类型的可理解为清点中）,\n50=OnUppering=待上架,\n70=Uppering=上架中,\n100=Completed=上架完成,\n-1=Void=作废",
          "need_index": "Y",
          "title": "PO收货流程状态",
          "description": "收货流程状态\nPO-开始收货：POStatus=50,ReceiveStatus=20（快速收货=50）;\n上架设置中：ReceiveStatus=20;\n待上架：ReceiveStatus=20;\n上架中：ReceiveStatus=50;\n所有商品上架：ReceiveStatus=100，叠加更新POMaster和POItem中的数量，但不更新状态。"
        },
        {
          "key": "",
          "field": "ReceiveType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=POStdReceive=标准PO收货,\n1=QuickReceive=无PO快捷收货,\n2=POQuickReceive=快捷PO收货,\n3=ProductTransfer=货权转移,\n4=ReceiveStaging=收货暂存,\n5=POScatteredReceive=散件收货,\n6=POCheckReceive=清点收货",
          "need_index": "",
          "title": "收货类型",
          "description": "收货类型；标准PO收货：会基于PO入库单收货； 无PO快捷收货：主要用于一些临时的，尤其整进整出的业务，可采用简便收货"
        },
        {
          "key": "",
          "field": "ReceiveStartTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库开始时间",
          "description": "PO入库开始时间"
        },
        {
          "key": "",
          "field": "ReceiveCompletTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库完成时间",
          "description": "入库完成时间"
        },
        {
          "key": "",
          "field": "ReceivedUserSysNoes",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货人编号",
          "description": "收货人编号，逗号分隔"
        },
        {
          "key": "",
          "field": "ReceivedUsers",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货人姓名",
          "description": "收货人姓名，逗号分隔"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回推状态确认",
          "description": "回推状态确认"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "回传时间",
          "description": "回传时间"
        },
        {
          "key": "",
          "field": "ConfirmMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传备注",
          "description": "回传备注"
        },
        {
          "key": "",
          "field": "AssignStorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "指定上架目标库区ID",
          "description": "指定上架目标库区ID，主要用于标准和散件收货；方便上到机器人区"
        },
        {
          "key": "",
          "field": "ColCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "散件收货的列数设置",
          "description": "散件收货模式的列数设置"
        },
        {
          "key": "",
          "field": "CountStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "-1",
          "remark": "0=NotCount=未清点,\n20=OnSetting=清点中,\n50=OnUppering=待上架,\n70=Uppering=上架中,\n100=Completed=上架完成,\n-1=NoNeed=无需清点",
          "need_index": "Y",
          "title": "清点状态",
          "description": "清点状态。1）标准清点任务收货时与收货任务状态ReceiveStatus一致；（2）暂存收货初始为 0 未清点，其余状态如1）；（3）其他收货类型为-1 无需清点"
        }
      ]
    },
    {
      "name": "ReceiveItem",
      "sheet": "CWMInv",
      "title": "收货每次收货Item级别的清点记录，（20240418开始用于暂存PO收货）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ReceiveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品SysNo",
          "description": "商品SysNo"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号，如果没有填批号但是填写了有效日期，批号则为有效日期的yyyyMMdd格式内容"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "POItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "入库单明细编号",
          "description": "入库单明细编号"
        },
        {
          "key": "",
          "field": "PurchaseQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "采购数量",
          "description": "采购数量"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量，没有箱规则为0，没有设置箱规的商品不能入托盘库"
        },
        {
          "key": "",
          "field": "ReceivedBoxQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货箱数",
          "description": "收货整箱数，清点填写"
        },
        {
          "key": "",
          "field": "ReceivedDistributedQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "零散数量",
          "description": "零散数量，清点填写"
        },
        {
          "key": "",
          "field": "ReceivedQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收有效数量",
          "description": "实际收货的有效数量"
        },
        {
          "key": "",
          "field": "ImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实收次品数量",
          "description": "实收次品数量"
        },
        {
          "key": "",
          "field": "WasteQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实收废品数量",
          "description": "实收废品数量"
        },
        {
          "key": "",
          "field": "CommonCellID",
          "type": "VARCHAR(15)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架良品库位",
          "description": "上架良品库位"
        },
        {
          "key": "",
          "field": "ImperfectCellID",
          "type": "VARCHAR(15)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架次品库位",
          "description": "上架次品库位"
        },
        {
          "key": "",
          "field": "ReceiveMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        }
      ]
    },
    {
      "name": "ReceiveUpperTask",
      "sheet": "CWMInv",
      "title": "设置上架任务信息：在完成清单时，本表中每个批号的商品自动插入一条数据，但载体类型、目标库区都是空的；\n自由设置收货入库任务，在\"入库任务\"这个一步中设置每个商品(可含批号)各有多少托（每托一行）进什么库区；",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ReceiveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品SysNo",
          "description": "商品SysNo"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号，如果没有填批号但是填写了有效日期，批号则为有效日期的yyyyMMdd格式内容"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "POItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "入库单明细编号",
          "description": "入库单明细编号"
        },
        {
          "key": "",
          "field": "TargetStorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣位库,\n1=Box=料箱库,\n2=Pallet=托盘库,\n3=GroundHeap=地堆位",
          "need_index": "Y",
          "title": "上架目标库区类型",
          "description": "上架目标库区，箱体可去料箱库或者零拣库或者地堆库，\n箱体去料箱库条码和地堆必须每箱唯一，\n箱体去零拣可以重复；\n托盘可去托盘库或者地堆库，托盘条码必须唯一；"
        },
        {
          "key": "",
          "field": "TargetStorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "上架目标库区ID",
          "description": "上架目标库区ID"
        },
        {
          "key": "",
          "field": "TargetCellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "目标良残标识",
          "description": "目标良残标识，对应商品的品质是有效的，次品的，废品的"
        },
        {
          "key": "",
          "field": "RecommendCellID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推荐目标库位",
          "description": "推荐目标库位ID"
        },
        {
          "key": "",
          "field": "PackingType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Pallet=托盘,\n2=Box=周转箱,\n3=ProductBox=商品原箱",
          "need_index": "",
          "title": "载体类型",
          "description": "载体类型"
        },
        {
          "key": "",
          "field": "PackingBarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "载体条码",
          "description": "载体条码"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量，没有箱规则为0，没有设置箱规的商品不能入托盘库"
        },
        {
          "key": "",
          "field": "PackingBoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "箱数",
          "description": "载体箱数，如果是箱体为载体，则为1"
        },
        {
          "key": "",
          "field": "PackingProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品总数",
          "description": "载体内商品总数"
        },
        {
          "key": "",
          "field": "UpperQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "已上架总数",
          "description": "已上架总数，等于任务对应的实际上架记录汇总"
        },
        {
          "key": "",
          "field": "ReceiveUpperStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoUpper=未上架,\n50=PartUpped=部分上架,\n100=Completed=完成上架,\n-1=Void=作废上架",
          "need_index": "Y",
          "title": "上架状态",
          "description": "上架状态"
        },
        {
          "key": "",
          "field": "PackingRowNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "散件收货时容器的行数",
          "description": "散件收货时容器的行数"
        },
        {
          "key": "",
          "field": "PackingColNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "散件收货时容器的列数",
          "description": "散件收货时容器的列数"
        }
      ]
    },
    {
      "name": "ReceiveExtend",
      "sheet": "CWMInv",
      "title": "收货任务的扩展信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ReceiveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "ExtendFlag",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "扩展标识",
          "description": "扩展标识"
        },
        {
          "key": "",
          "field": "ExtendContent",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "扩展内容",
          "description": "扩展内容，比如记录收货商品二维码记录"
        }
      ]
    },
    {
      "name": "ReceiveUpperPalletBox",
      "sheet": "CWMInv",
      "title": "根据托盘上有多少箱体，自动生成箱码，可供打印——一期可不实现（手动仓，注意领取补货任务时，不能一个人同时领取同一个商品不同效期的补货任务，因为没有商品原箱条码区分）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ReceiveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "ReceiveUpperTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "上架任务编号",
          "description": "上架任务编号"
        },
        {
          "key": "",
          "field": "BoxCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱码",
          "description": "箱码"
        }
      ]
    },
    {
      "name": "ReceiveUpperRecord",
      "sheet": "CWMInv",
      "title": "实际上架明细记录，MPS上扫描载体确定任务，再扫描库位确定库位，如果是周转箱体，并且是去零拣库位，需要扫描UPC",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ReceiveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "ReceiveUpperTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "上架任务编号",
          "description": "上架任务编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "有效截止日期"
        },
        {
          "key": "",
          "field": "POItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "入库单明细编号",
          "description": "入库单明细编号"
        },
        {
          "key": "",
          "field": "StorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣位库,\n1=Box=料箱库,\n2=Pallet=托盘库,\n3=GroundHeap=地堆位",
          "need_index": "Y",
          "title": "上架库区类型",
          "description": "上架库区类型"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "上架库位",
          "description": "上架库位"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "目标良残标识",
          "description": "目标良残标识，对应商品的品质是有效的，次品的，废品的"
        },
        {
          "key": "",
          "field": "BizDicSysNoes",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务字典编号",
          "description": "业务字典编号，多个逗号分割，主要用于处理退货登记次品"
        },
        {
          "key": "",
          "field": "PackingType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Pallet=托盘,\n2=Box=箱体",
          "need_index": "",
          "title": "任务载体类型",
          "description": "任务载体类型"
        },
        {
          "key": "",
          "field": "PackingBarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "任务载体条码",
          "description": "任务载体条码"
        },
        {
          "key": "",
          "field": "PackingBoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "任务箱数",
          "description": "任务载体箱数，如果是箱体为载体，则为1"
        },
        {
          "key": "",
          "field": "PackingProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "任务商品总数",
          "description": "任务载体内商品总数"
        },
        {
          "key": "",
          "field": "UpperBarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "上架载体条码",
          "description": "上架载体条码"
        },
        {
          "key": "",
          "field": "UpperBoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "上架箱数",
          "description": "上架箱数"
        },
        {
          "key": "",
          "field": "UpperProductQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架商品数",
          "description": "上架商品数"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架人",
          "description": "上架人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架名",
          "description": "上架名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "上架时间",
          "description": "上架时间"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": ""
        }
      ]
    },
    {
      "name": "ReceiveCheckTask",
      "sheet": "CWMInv",
      "title": "收货清点任务表，支持多个PO",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "Vendor的SysNo",
          "description": "Vendor的SysNo"
        },
        {
          "key": "",
          "field": "ReceiveCheckStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Start=开始收货,\n5=Checking=清点中,\n10=CheckCompleted=清点完成,\n-1=Void=作废",
          "need_index": "Y",
          "title": "PO收货流程状态",
          "description": "PO收货流程状态"
        },
        {
          "key": "",
          "field": "ReceiveMode",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=Staging=暂存收货,\n5=Complete=完成收货",
          "need_index": "Y",
          "title": "收货方式",
          "description": "收货方式"
        },
        {
          "key": "",
          "field": "CheckStartTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "开始清点时间",
          "description": "开始清点时间"
        },
        {
          "key": "",
          "field": "CheckLatestTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后清点时间",
          "description": "最后清点时间"
        },
        {
          "key": "",
          "field": "CheckCompletTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "完成清点时间",
          "description": "完成清点时间"
        },
        {
          "key": "",
          "field": "CheckUserSysNoes",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "清点人编号",
          "description": "清点人编号"
        },
        {
          "key": "",
          "field": "CheckUsers",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "清点人姓名",
          "description": "清点人姓名"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "CheckReceivePacking",
      "sheet": "CWMInv",
      "title": "收货清点任务容器表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "清点任务明细系统编号",
          "description": "清点任务明细系统编号"
        },
        {
          "key": "",
          "field": "ReceiveCheckTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "清点任务系统编号",
          "description": "清点任务系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PackingBarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "容器条码",
          "description": "容器条码"
        },
        {
          "key": "",
          "field": "Number",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "序号",
          "description": "序号（从1开始）"
        },
        {
          "key": "",
          "field": "CheckPackingStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Start=开始清点,\n5=Checking=清点中,\n10=CheckCompleted=清点完成",
          "need_index": "Y",
          "title": "清点容器状态",
          "description": "清点容器状态"
        },
        {
          "key": "",
          "field": "ReceiveVarianceFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=正常,\n1=Over=超收,\n-1=Short=短收",
          "need_index": "Y",
          "title": "超短收标志",
          "description": "超短收标志，0=正常，1=超收，-1=短收"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ReceiveCheckItem",
      "sheet": "CWMInv",
      "title": "收货清点任务表明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "清点任务明细系统编号",
          "description": "清点任务明细系统编号"
        },
        {
          "key": "",
          "field": "ReceiveCheckTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "清点任务系统编号",
          "description": "清点任务系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PackingBarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "容器条码",
          "description": "容器条码"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品系统编号",
          "description": "商品表的SysNo"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "生产日期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "过期日期",
          "description": "过期日期"
        },
        {
          "key": "",
          "field": "CheckAvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "清点良品数量",
          "description": "清点良品数量"
        },
        {
          "key": "",
          "field": "CheckImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "清点次品数量",
          "description": "清点次品数量"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(15)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "上架库位ID",
          "description": "上架库位ID"
        },
        {
          "key": "",
          "field": "AssignStorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "指定上架目标库区ID",
          "description": "指定上架目标库区ID，主要用于完成收货时"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ReceiveCheckTask_PO",
      "sheet": "CWMInv",
      "title": "收货清点任务与PO的关联，1对多",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ReceiveCheckTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "清点任务系统编号",
          "description": "清点任务系统编号"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "PO系统编号",
          "description": "PO系统编号"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ReceiveCheckItem_ReceiveUpperTask",
      "sheet": "CWMInv",
      "title": "收货清点任务明细与收货上架设置关联，1对多（可用于追溯，存在同一个商品关联多个PO时，明细会对应多个拆分）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ReceiveCheckTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "清点任务系统编号",
          "description": "清点任务系统编号"
        },
        {
          "key": "",
          "field": "ReceiveCheckItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "清点任务明细系统编号",
          "description": "清点任务明细系统编号"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "PO系统编号",
          "description": "PO系统编号"
        },
        {
          "key": "",
          "field": "ReceiveTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货任务系统编号",
          "description": "收货任务系统编号"
        },
        {
          "key": "",
          "field": "ReceiveUpperTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货任务上架设置系统编号",
          "description": "收货任务上架设置系统编号"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "SOMaster",
      "sheet": "CWMInv",
      "title": "订单主信息（如果要做跨境，则跨境方面信息单独建表）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "OwnerCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ERP货主编号",
          "description": "ERP货主编号"
        },
        {
          "key": "",
          "field": "PSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "OMS PSOMaster.SysNo",
          "description": "OMS PSOMaster.SysNo"
        },
        {
          "key": "",
          "field": "MSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "OMS MSOMaster.SysNo",
          "description": "OMS MSOMaster.SysNo"
        },
        {
          "key": "",
          "field": "MultiChildFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=OnlyOne=唯一子订单,\n1=Multi=多子订单",
          "need_index": "Y",
          "title": "多子订单标识",
          "description": "是否多个子订单"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号，来源于外部ID"
        },
        {
          "key": "",
          "field": "SORelCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单相关编号",
          "description": "订单相关编号，来源于外部ID，如其它线上编号"
        },
        {
          "key": "",
          "field": "ERPTradeNo",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "ERP订单编号",
          "description": "ERP订单编号，交易单号，旺店通JY单号，聚水潭订单号"
        },
        {
          "key": "",
          "field": "SOType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=B2COrder=2C订单,\n2=B2BOrder=2B订单,\n9=OtherOrder=其它订单",
          "need_index": "Y",
          "title": "订单类型",
          "description": "订单类型，1=-正常2C订单，2=正常2B订单（比如自提，第三方自提门店订单等），也对应奇门对接里B2B订单，9=其它未归类"
        },
        {
          "key": "",
          "field": "ErpOrderType",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "ERP的OrderType",
          "description": "ERP 的OrderType,主要用于记录，然后回传ERP使用"
        },
        {
          "key": "",
          "field": "PreSORelCodes",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "前置单号",
          "description": "前置单号（如入库单），多个使用逗号分隔"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态,\n20=WaitOS=待出库,\n30=SetInWave=已进订单波次,\n40=WaitPick=已建任务待拣货,\n50=OnPicking=拣货中,\n60=Picked=拣货完成,\n70=OnSecondPicking=二次分拣中,\n80=SecondPicked=二次分拣完成,\n90=Packaged=打包完成,\n100=Completed=已出库,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "订单状态",
          "description": "订单状态：订单进入  0-初始态，\n审核并获取运单号  20-待出库，\n创建波次 30-已进订单波次，\n创建任务 40-已建任务待拣货，\n领取任务 50-拣货中，\n拣货完成 60-拣货完成，\n开始二次分拣 70-二次分拣中，\n二次分拣完成 80-二次分拣完成 (仅多品)，\n打包完成 90-打包完成，\n分拣出库 100-已出库"
        },
        {
          "key": "",
          "field": "TradeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通电商,\n1=FAT=跨境电商",
          "need_index": "Y",
          "title": "贸易类型",
          "description": "贸易类型"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID,冗余",
          "description": "电商平台ID"
        },
        {
          "key": "",
          "field": "VendorThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户电商配置编号",
          "description": "商户电商配置编号"
        },
        {
          "key": "",
          "field": "ThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称，冗余显示用"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回推状态确认",
          "description": "回推状态确认"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传时间",
          "description": "回传奇门成功时记录回传时间"
        },
        {
          "key": "",
          "field": "ThirdCustomerId",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "第三方用户ID",
          "description": "第三方用户ID"
        },
        {
          "key": "",
          "field": "SODate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单时间",
          "description": "订单时间"
        },
        {
          "key": "",
          "field": "PayDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "支付时间",
          "description": "支付时间"
        },
        {
          "key": "",
          "field": "PaySerialNumber",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "支付流水号",
          "description": "支付流水号"
        },
        {
          "key": "",
          "field": "PayTypeId",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "支付类型",
          "description": "支付类型"
        },
        {
          "key": "",
          "field": "PayTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "支付名称",
          "description": "支付名称"
        },
        {
          "key": "",
          "field": "SOEstVolume",
          "type": "DECIMAL(12,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包裹估算体积",
          "description": "订单包裹体积(立方厘米)，初步计算出来的"
        },
        {
          "key": "",
          "field": "SOWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单重量",
          "description": "订单重量"
        },
        {
          "key": "",
          "field": "PackageCount",
          "type": "int",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹数量",
          "description": "包裹数量"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "'",
          "remark": "",
          "need_index": "",
          "title": "包装箱ID",
          "description": "包装箱ID"
        },
        {
          "key": "",
          "field": "PackageWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量",
          "description": "包裹重量，WMS写入"
        },
        {
          "key": "",
          "field": "PackageLength",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹长",
          "description": ""
        },
        {
          "key": "",
          "field": "PackageWidth",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹宽",
          "description": ""
        },
        {
          "key": "",
          "field": "PackageHeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹高",
          "description": ""
        },
        {
          "key": "",
          "field": "OriginShipTypeID",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单原始物流ID",
          "description": "订单原始物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "DeliveryType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通配送,\n1=ColdDelivery=冷链配送,\n2=EnvDelivery=环保配送",
          "need_index": "",
          "title": "发货服务类",
          "description": "发货服务类"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "WaybillNumberAreaCode",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单三段码",
          "description": "运单快递区域编码运单三段码或大头笔信息"
        },
        {
          "key": "",
          "field": "WaybillResponse",
          "type": "VARCHAR(4000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单号获取物流反馈",
          "description": "运单号获取物流反馈"
        },
        {
          "key": "",
          "field": "WaybillOptMsg",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单说明",
          "description": "运单处理消息：获取运单如果有异常则把异常内容部分写入；正常后重新置空；切换时在前面插入已切换文字。"
        },
        {
          "key": "",
          "field": "WaybillShipCfgSysNo",
          "type": "int",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "电子面单配置SysNo",
          "description": "记录获取运单时使用的店铺电子面单配置"
        },
        {
          "key": "",
          "field": "SOAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单金额",
          "description": "订单金额"
        },
        {
          "key": "",
          "field": "ProductAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品金额",
          "description": "商品金额"
        },
        {
          "key": "",
          "field": "DiscountAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "折扣金额",
          "description": "折扣金额"
        },
        {
          "key": "",
          "field": "Tax",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品税",
          "description": "商品税"
        },
        {
          "key": "",
          "field": "InsuredAmount",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保费",
          "description": "保费"
        },
        {
          "key": "",
          "field": "InsuredChargeTax",
          "type": "DECIMAL(18, 6)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保费税",
          "description": "保费税"
        },
        {
          "key": "",
          "field": "ShippingCharge",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运费金额",
          "description": "运费金额"
        },
        {
          "key": "",
          "field": "ShippingChargeTax",
          "type": "DECIMAL(18, 6)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运费税",
          "description": "运费税"
        },
        {
          "key": "",
          "field": "WMSShippingCharge",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "仓库运费",
          "description": "仓库实际运费，核算用"
        },
        {
          "key": "",
          "field": "LockFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=VoidLock=作废拦截 ,\n2=ShipLock=物流停发锁定,\n9=HoldLock=暂停锁定",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识"
        },
        {
          "key": "",
          "field": "LockReason",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "锁定原因",
          "description": "锁定原因"
        },
        {
          "key": "",
          "field": "LockSOStatus",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "0=Init=初始态,\n20=WaitOS=待出库,\n30=SetInWave=已进订单波次,\n40=WaitPick=已建任务待拣货,\n50=OnPicking=拣货中,\n60=Picked=拣货完成,\n70=OnSecondPicking=二次分拣中,\n80=SecondPicked=二次分拣完成,\n90=Packaged=打包完成,\n100=Completed=已出库,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "锁定时订单状态",
          "description": "锁定时订单状态"
        },
        {
          "key": "",
          "field": "ReceiveAreaGBCode",
          "type": "VARCHAR(6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地区编码",
          "description": "收货地区编码"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区",
          "description": "区"
        },
        {
          "key": "",
          "field": "ReceiveAddress",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货详细地址",
          "description": "收货详细地址"
        },
        {
          "key": "",
          "field": "ReceiveName",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系姓名",
          "description": "联系姓名"
        },
        {
          "key": "",
          "field": "ReceivePhone",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "ReceiveZip",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货邮编",
          "description": "收货邮编"
        },
        {
          "key": "",
          "field": "OAID",
          "type": "VARCHAR(128)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "奇门OAID",
          "description": "奇门OAID"
        },
        {
          "key": "",
          "field": "BuyerNote",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "买家留言",
          "description": "买家留言"
        },
        {
          "key": "",
          "field": "SellerNote",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "卖家留言",
          "description": "卖家留言"
        },
        {
          "key": "",
          "field": "SOItemType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=OneItemSingle=单件订单,\n2=OneItemMulti=单品多件,\n3=Multi=多品订单",
          "need_index": "",
          "title": "订单结构类型",
          "description": "订单结构类型，创建订单时，需要判断出订单结构"
        },
        {
          "key": "",
          "field": "SOItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "SOItemsQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "SameStructureKey",
          "type": "Varchar(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "同构订单Key",
          "description": "同构订单Key，创建订单时就解析写入,先按商品编号顺序排序，计算Key=商品编号-数量_商品编号-数量_****；\n再将Key取32位的Hash值作为真正的Key值"
        },
        {
          "key": "",
          "field": "SameStructureName",
          "type": "Varchar(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "同构订单名称",
          "description": "同构订单名称"
        },
        {
          "key": "",
          "field": "PTagSysNo",
          "type": "Varchar(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "标签编号",
          "description": "商品标签编号，多个用逗号分隔，前后加逗号，同UPC"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "SOIssueTaskUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "生成任务用户",
          "description": "生成任务用户"
        },
        {
          "key": "",
          "field": "SOIssueTaskDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "生成任务时间",
          "description": "生成任务时间"
        },
        {
          "key": "",
          "field": "SOPickedUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成拣货用户",
          "description": "完成拣货用户"
        },
        {
          "key": "",
          "field": "SOPickedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成拣货时间",
          "description": "完成拣货时间"
        },
        {
          "key": "",
          "field": "SOSecondPickedUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成二分用户",
          "description": "完成二分用户"
        },
        {
          "key": "",
          "field": "SOSecondPickedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成二次分拣时间",
          "description": "完成二次分拣时间，同构波次、标准波次的单品，二分时间和打包时间是一样的"
        },
        {
          "key": "",
          "field": "SOPackagedUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成打包用户",
          "description": "完成打包用户"
        },
        {
          "key": "",
          "field": "SOPackagedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成打包时间",
          "description": "完成打包时间"
        },
        {
          "key": "",
          "field": "SOOutStockDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出库时间",
          "description": "出库时间"
        },
        {
          "key": "",
          "field": "ShipCollectedFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=未揽收, \n5=HasSubscribe=已订阅,\n10=HasCollected=已揽收",
          "need_index": "",
          "title": "是否揽收",
          "description": "是否揽收，根据是否有快递路由信息"
        },
        {
          "key": "",
          "field": "ShipCollectedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "揽收时间",
          "description": "揽收时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "",
          "field": "OriginShipSettlement",
          "type": "TINYINT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "按原始快递结算",
          "description": "按原始快递结算 0否 1是"
        }
      ]
    },
    {
      "name": "SOExtend",
      "sheet": "CWMInv",
      "title": "订单扩展表（与SOMaster是1对1关系，创建SOMaster时也同时创建）。新增的和主体业务没关的字段都放在这里面，按需增加字段。",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库单编号",
          "description": "PO编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SO系统编号",
          "description": "SO系统编号"
        },
        {
          "key": "",
          "field": "ShipTypeMSN",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递MSN",
          "description": "快递MSN"
        },
        {
          "key": "",
          "field": "SOVersion",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "版本号",
          "description": "版本号 用于更新获取运单"
        },
        {
          "key": "",
          "field": "ConfirmMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传备注",
          "description": "回传备注"
        },
        {
          "key": "",
          "field": "LatestDeliveryTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最晚发货时间",
          "description": "最晚发货时间"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间,订单从OMS下发到WMS的时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "SOItem",
      "sheet": "CWMInv",
      "title": "订单商品详情",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOMasterSysNo",
          "description": "SOMasterSysNo"
        },
        {
          "key": "",
          "field": "MSOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "OMS MSOMaster.SysNo",
          "description": "OMS MSOMaster.SysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品SysNo",
          "description": "商品SysNo"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号，可以根据批号精准出库"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品单位",
          "description": "商品单位"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "商品数量"
        },
        {
          "key": "",
          "field": "Price",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品价格",
          "description": "商品价格"
        },
        {
          "key": "",
          "field": "HSCode",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "HSCode",
          "description": "HSCode"
        },
        {
          "key": "",
          "field": "ActualOSJson",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出库批次",
          "description": "出库批次，创建任务后分配"
        },
        {
          "key": "",
          "field": "ConfirmOSJson",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传批次",
          "description": "回传批次，回传时记录回传的批次"
        }
      ]
    },
    {
      "name": "SOPackage",
      "sheet": "CWMInv",
      "title": "订单包裹信息，打包环节时写入",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOMasterSysNo",
          "description": "SOMasterSysNo"
        },
        {
          "key": "",
          "field": "PackageIndex",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包裹序号",
          "description": "每个订单从1开始的包裹序号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "SOPackageStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "60=Picked=拣货完成,\n70=OnSecondPicking=二次分拣中,\n80=SecondPicked=二次分拣完成,\n90=Packaged=打包完成,\n100=Completed=已出库,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "订单包裹状态",
          "description": "在这里跟订单状态保持一致。非锁定的包裹全部出库完成后，订单出库完成，此时将获取到运单号的锁定的包裹取消运单。"
        },
        {
          "key": "",
          "field": "LockFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=VoidLock=作废拦截",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识，当减少包裹数量的时候改为锁定。"
        },
        {
          "key": "",
          "field": "LockReason",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "锁定原因",
          "description": "锁定原因"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "'",
          "remark": "",
          "need_index": "",
          "title": "包装箱ID",
          "description": "包装箱ID"
        },
        {
          "key": "",
          "field": "PackageWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量",
          "description": "包裹重量，WMS写入"
        },
        {
          "key": "",
          "field": "PackageLength",
          "type": "DECIMAL(11, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹长",
          "description": ""
        },
        {
          "key": "",
          "field": "PackageWidth",
          "type": "DECIMAL(11, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹宽",
          "description": ""
        },
        {
          "key": "",
          "field": "PackageHeight",
          "type": "DECIMAL(11, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹高",
          "description": ""
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "PrintCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "打印次数",
          "description": "打印次数"
        },
        {
          "key": "",
          "field": "ItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "行数",
          "description": "行数"
        },
        {
          "key": "",
          "field": "ItemsQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "件数",
          "description": "件数"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "WaybillNumberAreaCode",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单三段码",
          "description": "运单快递区域编码运单三段码或大头笔信息,"
        },
        {
          "key": "",
          "field": "WaybillResponse",
          "type": "VARCHAR(4000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单号获取物流反馈",
          "description": "运单号获取物流反馈"
        },
        {
          "key": "",
          "field": "WaybillOptMsg",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单处理作信息",
          "description": "运单处理消息：获取运单如果有异常则把异常内容部分写入；正常后重新置空；切换时在前面插入已切换文字。"
        },
        {
          "key": "",
          "field": "SOSecondPickedUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成二分用户",
          "description": "完成二分用户"
        },
        {
          "key": "",
          "field": "SOPackagedUser",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成打包用户",
          "description": "完成打包用户"
        },
        {
          "key": "",
          "field": "SOSecondPickedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成二次分拣时间",
          "description": "完成二次分拣时间，同构波次、标准波次的单品，二分时间和打包时间是一样的"
        },
        {
          "key": "",
          "field": "SOPackagedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成打包时间",
          "description": "完成打包时间"
        },
        {
          "key": "",
          "field": "SOOutStockDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出库时间",
          "description": "出库时间"
        },
        {
          "key": "",
          "field": "ShipCollectedFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=未揽收, \n5=HasSubscribe=已订阅,\n10=HasCollected=已揽收",
          "need_index": "",
          "title": "是否揽收",
          "description": "是否揽收，根据是否有快递路由信息"
        },
        {
          "key": "",
          "field": "ShipCollectedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "揽收时间",
          "description": "揽收时间"
        },
        {
          "key": "",
          "field": "SFWeightConfirmFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "顺丰重量确认标识",
          "description": "妙可蓝多顺丰需要确认重量，用于标识是否确认，1表示已确认0表示未确认，-1表示失败"
        },
        {
          "key": "",
          "field": "BillWeight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计费重量",
          "description": "客户账单计费重量"
        },
        {
          "key": "",
          "field": "ReSendSOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "库内补发包裹编号",
          "description": "库内补发包裹编号：0（默认）=正常包裹，大于0时，表示被补发的包裹系统编号"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "SOPItem",
      "sheet": "CWMInv",
      "title": "订单包裹商品详情",
      "fields": [
        {
          "key": "",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOMasterSysNo",
          "description": "SOMasterSysNo"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOPackageSysNo",
          "description": "SOPackageSysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批次号",
          "description": "批次号"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "生产日期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "效期"
        },
        {
          "key": "",
          "field": "UPCCode",
          "type": "VARCHAR(40)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "upccode",
          "description": "upccode"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOMasterSysNo",
          "description": "SOMasterSysNo"
        },
        {
          "key": "",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOMasterSysNo",
          "description": "SOMasterSysNo"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOPackageSysNo",
          "description": "SOPackageSysNo"
        },
        {
          "key": "",
          "field": "PCMBarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材条码",
          "description": "包耗材条码"
        },
        {
          "key": "",
          "field": "PCMName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包耗材名称",
          "description": "包耗材名称，冗余"
        },
        {
          "key": "",
          "field": "PCMQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "使用数量",
          "description": "使用数量"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "SOPTagItem",
      "sheet": "CWMInv",
      "title": "订单商品标记详情",
      "fields": [
        {
          "key": "",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "SOMasterSysNo",
          "description": "SOMasterSysNo"
        },
        {
          "key": "",
          "field": "PTagSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "标签编号",
          "description": "商品标签编号，多个用逗号分隔，前后加逗号，同UPC"
        }
      ]
    },
    {
      "name": "WaveTemplate",
      "sheet": "CWMInv",
      "title": "订单出库波次设置模板",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模板编号",
          "description": "模板编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TemplateName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模板名称",
          "description": "模板名称"
        },
        {
          "key": "",
          "field": "Desc",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "描述",
          "description": "描述"
        },
        {
          "key": "",
          "field": "WaveOptType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SOStandard=SO标准作业模式,\n1=SOSameStructureBatch=SO同构批量模式,\n11=BOOutStock=BO批量出库单模式",
          "need_index": "",
          "title": "波次作业模式",
          "description": "波次作业模式，0=标准作业模式：按波次创建多个拣货任务(也可以基于同构筛选)，拣货后再按照拣货任务进行二次分拣，打印面单，打包贴码；\n1=同构批量模式：必须按照同构筛选，默认同构内有多少待出库订单，就筛选多少，然后按照拣货商品和库区生成拣货任务，全库计算每种SKU从哪里拿多少个，所有拣货任务完成汇聚起来，统一分拣，统一批量打印面单，统一手动完成出库。"
        },
        {
          "key": "",
          "field": "TradeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通电商,\n1=FAT=跨境电商",
          "need_index": "",
          "title": "贸易类型",
          "description": "贸易类型"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "货主编号",
          "description": "Vendor的SysNo"
        },
        {
          "key": "",
          "field": "OriginShipTypeID",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单原始物流ID",
          "description": "订单原始物流ID，多个物流ID用逗号分隔"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流ID",
          "description": "物流ID，多个物流ID用逗号分隔"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "ProvinceSysNoArray",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地区编码数组",
          "description": "收货地区编码，可以用于选择省，多个区域用逗号分隔，最多选20个地区。"
        },
        {
          "key": "",
          "field": "SOItemTypes",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单结构类型",
          "description": "订单结构类型，单件，单品多件，多品订单 三种可多选；创建必选条件，用逗号分隔"
        },
        {
          "key": "",
          "field": "SOItemsStartRowCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单商品行数最小",
          "description": "订单商品行数最小"
        },
        {
          "key": "",
          "field": "SOItemsEndRowCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单商品行数最大",
          "description": "订单商品行数最大"
        },
        {
          "key": "",
          "field": "SOItemsStartQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单商品件数最小",
          "description": "订单商品件数最小"
        },
        {
          "key": "",
          "field": "SOItemsEndQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单商品件数最大",
          "description": "订单商品件数最大"
        },
        {
          "key": "",
          "field": "MaxSOCount",
          "type": "INT",
          "required": "NULL",
          "default": "2000",
          "remark": "",
          "need_index": "",
          "title": "波次最大订单数",
          "description": "波次最大订单数"
        },
        {
          "key": "",
          "field": "PTagSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "标签条件",
          "description": "标签条件，多个物流ID用逗号分隔"
        },
        {
          "key": "",
          "field": "StorageTypes",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库区类型",
          "description": "库区类型，多个用逗号分隔，至少要有一个库区类型"
        },
        {
          "key": "",
          "field": "StorageZoneIds",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库区ID",
          "description": "库区ID，多个用逗号分隔，至少要有一个库区"
        },
        {
          "key": "",
          "field": "SSOManuPickMaxCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单品零拣最大单数",
          "description": "单品零拣最大单数"
        },
        {
          "key": "",
          "field": "MSOManuPickMaxCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "多品播种最大单数",
          "description": "多品播种最大单数"
        },
        {
          "key": "",
          "field": "SODatePassHoursStart",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单时间已过小时起始数",
          "description": "订单创建时间已过去的小时数-起始数"
        },
        {
          "key": "",
          "field": "SODatePassHoursEnd",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单时间已过小时截止数",
          "description": "订单创建时间已过去的小时数-截止数"
        },
        {
          "key": "",
          "field": "PackageWBSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "设定打包台",
          "description": "设定打包台"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "Wave",
      "sheet": "CWMInv",
      "title": "出库波次主信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(100001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "波次编号",
          "description": "波次编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WaveTemplateSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "使用的模板编号",
          "description": "使用的模板编号"
        },
        {
          "key": "",
          "field": "WaveOptType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SOStandard=SO标准作业模式,\n1=SOSameStructureBatch=SO同构批量模式,\n4=SOOneTaskPreOrder=摘果式作业,\n11=BOOutStock=BO批量出库单模式",
          "need_index": "",
          "title": "波次作业模式",
          "description": "波次作业模式，0=标准作业模式：按波次创建多个拣货任务(也可以基于同构筛选)，拣货后再按照拣货任务进行二次分拣，打印面单，打包贴码；\n1=同构批量模式：必须按照同构筛选，默认同构内有多少待出库订单，就筛选多少，然后按照拣货商品和库区生成拣货任务，全库计算每种SKU从哪里拿多少个，所有拣货任务完成汇聚起来，统一分拣，统一批量打印面单，统一手动完成出库。"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "TradeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通电商,\n1=FAT=跨境电商",
          "need_index": "",
          "title": "贸易类型",
          "description": "贸易类型"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "货主编号",
          "description": "Vendor的SysNo"
        },
        {
          "key": "",
          "field": "OriginShipTypeID",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单原始物流ID",
          "description": "订单原始物流ID，多个物流ID用逗号分隔"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流ID",
          "description": "多选：物流ID，用逗号分隔"
        },
        {
          "key": "",
          "field": "SOItemTypes",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单结构类型",
          "description": "多选：订单结构类型，单件，单品多件，多品订单 三种可多选；创建必选条件，用逗号分隔"
        },
        {
          "key": "",
          "field": "ThirdECIDs",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "第三方电商平台",
          "description": "第三方电商平台"
        },
        {
          "key": "",
          "field": "ProvinceSysNoArray",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地区编码数组",
          "description": "多选：收货地区编码，可以用于选择省，多个区域用逗号分隔，最多选20个地区。"
        },
        {
          "key": "",
          "field": "MaxSOCount",
          "type": "INT",
          "required": "NULL",
          "default": "2000",
          "remark": "",
          "need_index": "",
          "title": "波次最大订单数",
          "description": "波次最大订单数"
        },
        {
          "key": "",
          "field": "SOItemsStartRowCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品最小行数",
          "description": "商品最小行数"
        },
        {
          "key": "",
          "field": "SOItemsEndRowCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品最大行数",
          "description": "商品最大行数"
        },
        {
          "key": "",
          "field": "SOItemsStartQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品最小件数",
          "description": "商品最小件数"
        },
        {
          "key": "",
          "field": "SOItemsEndQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品最大件数",
          "description": "商品最大件数"
        },
        {
          "key": "",
          "field": "SODatePassHoursStart",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单时间已过小时起始数",
          "description": "订单创建时间已过去的小时数-起始数"
        },
        {
          "key": "",
          "field": "SODatePassHoursEnd",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单时间已过小时截止数",
          "description": "订单创建时间已过去的小时数-截止数"
        },
        {
          "key": "",
          "field": "SODateStart",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单时间起始",
          "description": "订单时间起始"
        },
        {
          "key": "",
          "field": "SODateEnd",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单时间截止",
          "description": "订单时间截止"
        },
        {
          "key": "",
          "field": "SOInDateStart",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "到库时间起始",
          "description": "到库时间起始"
        },
        {
          "key": "",
          "field": "SOInDateEnd",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "到库时间截止",
          "description": "到库时间截止"
        },
        {
          "key": "",
          "field": "AssignSOIDArray",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "指定订单",
          "description": "多个：指定订单SO数组，多个用逗号分隔"
        },
        {
          "key": "",
          "field": "SameStructureKey",
          "type": "Varchar(700)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "同构订单Key",
          "description": "多选：订单结构Key，多个用逗号分隔"
        },
        {
          "key": "",
          "field": "SameStructureName",
          "type": "Varchar(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "同构订单名称",
          "description": "冗余，同构订单名称，多个用逗号分隔"
        },
        {
          "key": "",
          "field": "PTagSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "标签条件",
          "description": "标签条件，多个物流ID用逗号分隔"
        },
        {
          "key": "",
          "field": "StorageTypes",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库区类型",
          "description": "多选：库区类型，多个用逗号分隔，由库区反推计算"
        },
        {
          "key": "",
          "field": "StorageZoneIds",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "库区ID",
          "description": "多选：库区ID，多个用逗号分隔，至少要有一个库区"
        },
        {
          "key": "",
          "field": "IsManuSetPickTask",
          "type": "BIT",
          "required": "NOT NULL",
          "default": "False",
          "remark": "",
          "need_index": "",
          "title": "是否手动设置拣选任务",
          "description": "是否手动设置各商品在具体库位上的拣选任务"
        },
        {
          "key": "",
          "field": "SSOManuPickMaxCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单品零拣最大单数",
          "description": "单品零拣最大单数，一个商品的单品订单可以建多少个拣货任务，取决于用户设置的 单品零拣任务最大的单数，如果没有设置或者为0，就认为建一个拣货任务"
        },
        {
          "key": "",
          "field": "MSOManuPickMaxCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "多品播种最大单数",
          "description": "多品播种最大单数"
        },
        {
          "key": "",
          "field": "ShipCarSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "车辆编号",
          "description": "车辆编号"
        },
        {
          "key": "",
          "field": "PackageWBSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "设定打包台",
          "description": "设定打包台"
        },
        {
          "key": "",
          "field": "SOCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单总数",
          "description": "订单总数"
        },
        {
          "key": "",
          "field": "SOItemRowCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品总行数",
          "description": "商品总行数"
        },
        {
          "key": "",
          "field": "SOItemQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品总件数",
          "description": "商品总件数"
        },
        {
          "key": "",
          "field": "WaveStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Init=初始状态,\n10=CreateTask=已生成任务,\n20=TaskLaunch=任务作业中,\n100=TaskCompleted=任务完成",
          "need_index": "Y",
          "title": "波次状态",
          "description": "波次状态。波次删除：在1时可以物理删除，删除时凡是该波次下面涉及的数据都需要删除。\n10=已生成任务=点击\"生成作业任务\"时触发\n20=任务已下发=点击“下发作业任务”触发"
        },
        {
          "key": "",
          "field": "PickAutoFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=ManuPick=人工拣选,\n2=RobotPick=机器人拣选",
          "need_index": "",
          "title": "拣选形式",
          "description": "拣选形式"
        },
        {
          "key": "",
          "field": "ManuPickType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=PickAndSplit=边捡边分,\n0=NormalPick=普通拣货车",
          "need_index": "",
          "title": "人工拣选方式",
          "description": ""
        },
        {
          "key": "",
          "field": "CheckBatchFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批次检查标记",
          "description": "批次检查标记，用于提前回传后修改实际出库批次"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WaveOrder",
      "sheet": "CWMInv",
      "title": "出库波次中的单据清单，如果WaveOptType是BO出库单模式，这个表里的SOSysNo实际上是BOSysNo",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WaveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "波次编号",
          "description": "波次编号"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "波次内单据序号",
          "description": "波次内单据序号"
        },
        {
          "key": "",
          "field": "OrderType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=SO=订单,\n2=BO=批量单",
          "need_index": "",
          "title": "单据类型",
          "description": "单据类型"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "单据编号",
          "description": "单据编号，如果波次是订单，则是订单编号，如果波次是BO单，则是BO单号"
        },
        {
          "key": "",
          "field": "LackFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "缺货标识",
          "description": "缺货标识，0=正常，1=缺货"
        }
      ]
    },
    {
      "name": "PickTask",
      "sheet": "CWMInv",
      "title": "拣选出库任务，包括单品整箱、单品零拣、多品零拣、批量出库4种类型，以及零拣库拣选、料箱整箱、托盘拆托取箱、整托出库的4种拣选作业方式",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WaveOptType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SOStandard=标准作业模式,\n1=SOSameStructureBatch=同构模式,\n4=SOOneTaskPreOrder=摘果式作业,\n11=BOOutStock=BO批量出库单模式",
          "need_index": "Y",
          "title": "波次作业模式",
          "description": "波次作业模式"
        },
        {
          "key": "",
          "field": "OrderItemFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=SOOneItemSingle=单件订单,\n2=SOOneItem=单品多件订单,\n3=SOMultiItem=多品多件订单,\n11=BOOS=批量出库单",
          "need_index": "Y",
          "title": "单据商品结构",
          "description": "单据商品结构，1=单件订单，2=单品订单，3=多品订单，11=批量出库单"
        },
        {
          "key": "",
          "field": "PickTaskOptType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=ManuPick=零拣库拣选,\n2=BoxPick=料箱整箱拣选,\n3=SplitPallet=托盘拆托拣选,\n4=WholePallet=整托拣选,\n5=GroupheapPick=地堆拣选，\n11=RobotPick=机器人拣选",
          "need_index": "Y",
          "title": "拣选作业方式",
          "description": "拣选作业方式：1=零拣库拣选，2=料箱库整箱拣选，3=托盘库拆托拣选；4=整托拣选 是为批量出库时使用的"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "货主编号",
          "description": "Vendor的SysNo,如果是机器人拣选，需要按照货主区分"
        },
        {
          "key": "",
          "field": "Urgent",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "紧急标识",
          "description": "紧急标识 ，数值越大越紧急"
        },
        {
          "key": "",
          "field": "SameStructureFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单据同构标识",
          "description": "单据同构标识，单据是否都是同构，0=非同构，1=同构"
        },
        {
          "key": "",
          "field": "WaveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "波次编号",
          "description": "波次编号；"
        },
        {
          "key": "",
          "field": "PickTaskStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "40=WaitPick=已建任务待拣货,\n50=OnPicking=拣货中,\n60=Picked=拣货完成,\n70=OnSecondPicking=二次分拣中,\n80=SecondPicked=二次分拣完成,\n90=Packaged=打包完成,\n-1=Void=已作废,\n-50=OnVoidIntercept=作废拦截中",
          "need_index": "Y",
          "title": "拣货任务状态",
          "description": "拣货任务状态"
        },
        {
          "key": "",
          "field": "SOCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单总数",
          "description": "订单总数"
        },
        {
          "key": "",
          "field": "SOItemRowCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品总行数",
          "description": "商品总行数"
        },
        {
          "key": "",
          "field": "SOItemQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品总件数",
          "description": "商品总件数"
        },
        {
          "key": "",
          "field": "SOItemBoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱数",
          "description": "如果是整箱或者整托拣选，显示箱数"
        },
        {
          "key": "",
          "field": "NodeLockUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "锁定人编号",
          "description": "锁定人编号"
        },
        {
          "key": "",
          "field": "NodeLockFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=UnLocked=未作业锁定,\n1=Locked=作业锁定中",
          "need_index": "",
          "title": "作业节点锁定标识",
          "description": "在各作业流程节点，一旦开始该节点的作业，则锁定（避免他人并发操作），作业完毕解锁。"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注，特殊时加上备注说明"
        },
        {
          "key": "",
          "field": "GIOCode",
          "type": "VARCHAR(32)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "对接交互编码",
          "description": "对接交互编码: GIOType-RefTaskSysNo-SysNo"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流ID",
          "description": "多选：物流ID，用逗号分隔"
        },
        {
          "key": "",
          "field": "PackingCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "拣货载体条码",
          "description": "拣货载体条码，目的只是二次分拣时扫描箱码得到任务信息。"
        },
        {
          "key": "",
          "field": "PickUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货人编号",
          "description": "拣货人编号,自动的则为0，人工则是工人“开始拣货”时更新这个字段，并锁定拣货节点。"
        },
        {
          "key": "",
          "field": "PickUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货人姓名",
          "description": "拣货人姓名"
        },
        {
          "key": "",
          "field": "PickStartDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货开始时间",
          "description": "拣货开始时间"
        },
        {
          "key": "",
          "field": "PickDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货时间",
          "description": "拣货结束时间"
        },
        {
          "key": "",
          "field": "SecondPickWBSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "二次分拣台编号",
          "description": "二次分拣台编号"
        },
        {
          "key": "",
          "field": "SecondPickUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "二次分拣人编号",
          "description": "二次分拣人编号"
        },
        {
          "key": "",
          "field": "SecondPickUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "二次分拣人姓名",
          "description": "二次分拣人姓名"
        },
        {
          "key": "",
          "field": "SecondPickStartDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "二次分拣开始时间",
          "description": "二次分拣开始时间"
        },
        {
          "key": "",
          "field": "SecondPickDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "二次分拣时间",
          "description": "二次分拣时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "PickOrder",
      "sheet": "CWMInv",
      "title": "拣选任务中商品库位拣选明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PickTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "拣货任务编号",
          "description": "拣货任务编号"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "任务内单据序号",
          "description": "任务内单据序号"
        },
        {
          "key": "",
          "field": "OrderType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=SO=订单,\n2=BO=批量单",
          "need_index": "",
          "title": "单据类型",
          "description": "单据类型"
        },
        {
          "key": "",
          "field": "OrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单据编号",
          "description": "单据编号"
        }
      ]
    },
    {
      "name": "PickItem",
      "sheet": "CWMInv",
      "title": "拣选任务中商品库位拣选明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PickTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "拣货任务编号",
          "description": "拣货任务编号"
        },
        {
          "key": "",
          "field": "SourceBoxCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "源箱条码",
          "description": "源整箱条码，包括直接整箱拣选和拆托的箱体拣选"
        },
        {
          "key": "",
          "field": "SourcePalletCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "源托盘条码",
          "description": "源托盘条码，包括拆托和不拆托方式，记录托盘条码"
        },
        {
          "key": "",
          "field": "SourceCellID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "拣货源库位地址",
          "description": "拣货源库位地址"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号，如果没有填批号但是填写了有效日期，批号则为有效日期的yyyyMMdd格式内容"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "ProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "需要拣选的商品数量"
        },
        {
          "key": "",
          "field": "BoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱数",
          "description": "如果是整箱或者整托拣选，显示箱数"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货顺序",
          "description": "拣货顺序，从小到大依次拣货"
        },
        {
          "key": "",
          "field": "PickedQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "已拣数量",
          "description": "已拣数量"
        },
        {
          "key": "",
          "field": "UPCCode",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "UPCCode",
          "description": "UPC Code"
        },
        {
          "key": "",
          "field": "PickItemStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=WaitPick=未拣货, \n100=Picked=已拣货",
          "need_index": "",
          "title": "拣货状态",
          "description": "拣货状态"
        },
        {
          "key": "",
          "field": "ProductTransferSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货权转移编号",
          "description": "货权转移时BO写入,picktasksysno=0"
        },
        {
          "key": "",
          "field": "ExceptionDetailSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "异常处理明细编号",
          "description": "异常报缺后，重新分配的明细"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "更新时间",
          "description": "更新时间"
        }
      ]
    },
    {
      "name": "BOMaster",
      "sheet": "CWMInv",
      "title": "批量出库单，简称批量单",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "OwnerCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ERP货主编号",
          "description": "ERP货主编号"
        },
        {
          "key": "",
          "field": "BOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批量出库单ID",
          "description": "批量出库单ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TradeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通电商,\n1=FAT=跨境电商",
          "need_index": "Y",
          "title": "贸易类型",
          "description": "贸易类型"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "VendorThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户电商配置编号",
          "description": "商户电商配置编号"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回推状态确认",
          "description": "回推状态确认"
        },
        {
          "key": "",
          "field": "BOType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=SalesOutStock=发货出库,\n2=ManufactOutStock=生产出库,\n3=TransferOutStock=库内调拨,\n5=CityOutStock=城配发货,\n9=OtherOutStock=其它出库",
          "need_index": "Y",
          "title": "批量单类型",
          "description": "批量单类型，1=正常批量出库，2=商户发出需要生产（如拆套）的出库，3=仓库间调拨出库，9=其它未归类"
        },
        {
          "key": "",
          "field": "ErpOrderType",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "ERP的OrderType",
          "description": "ERP 的OrderType,主要用于记录，然后回传ERP使用"
        },
        {
          "key": "",
          "field": "SettleFlag",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "0=NoKnown=未知方式,\n1=VendorSettle=客户结算,\n9=DriverCOD=司机代收",
          "need_index": "",
          "title": "结算方式",
          "description": "结算方式"
        },
        {
          "key": "",
          "field": "BOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态,\n10=Confirmed=已确认待出库,\n50=OnProcessing=任务作业中,\n60=Picked=拣货完成,\n80=Rechecked=复核完成,\n100=Completed=已完成出库,\n-50=OnVoidIntercept=作废拦截中,\n-1=Void=作废",
          "need_index": "Y",
          "title": "批量出库单状态",
          "description": "批量出库单状态,创建最初是初始态（草稿），然后商户确认或者仓库确认后变为已确认，0和10都可以删除；\n点击创建并下发任务后，一方面生成各种出库作业任务，同时状态变为任务作业中；\n当人工点击“全部完成出库确认”，一方面更新库存及库位库存，一方面变更状态为100."
        },
        {
          "key": "",
          "field": "LockFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=VoidLock=作废锁定,\n9=HoldLock=暂停锁定",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识"
        },
        {
          "key": "",
          "field": "LockReason",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "锁定原因",
          "description": "锁定原因"
        },
        {
          "key": "",
          "field": "LockBOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=初始态,\n10=Confirmed=已确认,\n50=OnProcessing=任务作业中,\n60=Picked=拣货完成,\n80=ReCheck=复核完成,\n100=Completed=已完成出库,\n-1=Void=作废",
          "need_index": "",
          "title": "锁定时批量单状态",
          "description": "锁定时批量单状态"
        },
        {
          "key": "",
          "field": "VendorNote",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商家留言",
          "description": "商家留言"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "ReceiveAreaGBCode",
          "type": "VARCHAR(6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地区编码",
          "description": "收货地区编码"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区",
          "description": "区"
        },
        {
          "key": "",
          "field": "ReceiveAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货详细地址",
          "description": "收货详细地址"
        },
        {
          "key": "",
          "field": "ReceiveName",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系姓名",
          "description": "联系姓名"
        },
        {
          "key": "",
          "field": "ReceivePhone",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "ReceiveZip",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货邮编",
          "description": "收货邮编"
        },
        {
          "key": "",
          "field": "TargetWBSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "目标工作台",
          "description": "目标工作台"
        },
        {
          "key": "",
          "field": "ShipCarSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "车辆编号",
          "description": "车辆编号"
        },
        {
          "key": "",
          "field": "BOItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "BOItemsQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "ConfirmMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传备注",
          "description": "回传备注"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "回传时间",
          "description": "回传时间"
        },
        {
          "key": "",
          "field": "PackageUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "复核打包人",
          "description": "复核打包人"
        },
        {
          "key": "",
          "field": "PackageUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "复核打包人显示名",
          "description": "复核打包人显示名"
        },
        {
          "key": "",
          "field": "PackageDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "复核打包时间",
          "description": "复核打包时间"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID",
          "description": "发往电商平台ID"
        },
        {
          "key": "",
          "field": "TotalBoxCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总箱数",
          "description": "总箱数"
        },
        {
          "key": "",
          "field": "DeliveryBoxLWH",
          "type": "VARCHAR(100)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送箱平均长宽高",
          "description": "配送箱平均长宽高,单位：cm，格式：Lenth*Width*High"
        },
        {
          "key": "",
          "field": "DeliveryBoxVol",
          "type": "DECIMAL(10, 2)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送箱平均体积",
          "description": "配送箱平均体积，单位：立方"
        },
        {
          "key": "",
          "field": "DeliveryTempCellID",
          "type": "VARCHAR(40)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送暂存区库位",
          "description": "配送暂存区库位"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "BOItem",
      "sheet": "CWMInv",
      "title": "批量出库商品明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批量出库单编号",
          "description": "批量出库单编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "标识",
          "description": "标识"
        },
        {
          "key": "",
          "field": "NeedByBatchNumber",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否基于批号来出库",
          "description": "是否基于批号来出库，0=不需要，1=需要"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号，预留"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，预留"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品单位",
          "description": "商品单位"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "商品数量"
        },
        {
          "key": "",
          "field": "OutStockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实出数量",
          "description": "实际出库数量"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量，没有箱规则为0，没有设置箱规的商品不能入托盘库"
        },
        {
          "key": "",
          "field": "BoxCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实际整箱数",
          "description": "实际整箱数"
        },
        {
          "key": "",
          "field": "SpareCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实际零散数",
          "description": "实际零散数"
        },
        {
          "key": "",
          "field": "ReCheckStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=未复核, \n100=Completed=复核完成",
          "need_index": "",
          "title": "复核状态",
          "description": "复核状态"
        },
        {
          "key": "",
          "field": "ERPOrderLine",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ERP行编号",
          "description": "ERP行编号"
        },
        {
          "key": "",
          "field": "ActualOSJson",
          "type": "VARCHAR(4000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出库批次",
          "description": "出库批次，创建任务后分配"
        },
        {
          "key": "",
          "field": "OriginOSJson",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出库单记录的来源单据的行信息",
          "description": "出库单记录的来源单据的行信息"
        },
        {
          "key": "",
          "field": "Price",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "售价",
          "description": "售价"
        },
        {
          "key": "",
          "field": "Cost",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "成本价",
          "description": "成本价"
        }
      ]
    },
    {
      "name": "BOChild",
      "sheet": "CWMInv",
      "title": "BO子单，BO单如果分流向，拆子单",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BOChildType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Common=标准分流, \n1=JIT=唯品会JIT装箱,",
          "need_index": "",
          "title": "",
          "description": "拆单类型"
        },
        {
          "key": "",
          "field": "POCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "采购单号",
          "description": "采购单号：BO单的采购方的单号"
        },
        {
          "key": "",
          "field": "BoxNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱号",
          "description": "箱号 ：bo单号+序号，唯品会JIT装箱使用"
        },
        {
          "key": "",
          "field": "ChildWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单号",
          "description": "预留 当前箱的运单号"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "BO单SysNo",
          "description": "BO单SysNo"
        },
        {
          "key": "",
          "field": "ReceiveOrg",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "流向名称",
          "description": "流向名称"
        },
        {
          "key": "",
          "field": "ReceiveName",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系姓名",
          "description": "联系姓名"
        },
        {
          "key": "",
          "field": "ReceivePhone",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "ReceiveAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地址",
          "description": "收货地址"
        },
        {
          "key": "",
          "field": "WholeBoxQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "整箱数",
          "description": "整箱数"
        },
        {
          "key": "",
          "field": "ScatterBoxQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "散箱数",
          "description": "散箱数"
        }
      ]
    },
    {
      "name": "BOChildItem",
      "sheet": "CWMInv",
      "title": "BO子单商品明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批量出库单编号",
          "description": "批量出库单编号"
        },
        {
          "key": "",
          "field": "BOChildSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "BO子单编号",
          "description": "BO子单编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批次号",
          "description": "批次号"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品单位",
          "description": "商品单位"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "商品数量"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量"
        }
      ]
    },
    {
      "name": "BOExtend",
      "sheet": "CWMInv",
      "title": "BO单扩展表（与BOMaster是1对1关系，创建BOMaster时也同时创建）。新增的和主体业务没关的字段都放在这里面，按需增加字段。",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库单编号",
          "description": "PO编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "BO系统编号",
          "description": "BO系统编号"
        },
        {
          "key": "",
          "field": "BOType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=SalesOutStock=销售出库,\n2=ManufactOutStock=生产出库,\n3=TransferOutStock=调拨出库,\n9=OtherOutStock=其它出库",
          "need_index": "Y",
          "title": "批量单类型",
          "description": "批量单类型，和BOMaster保持一致"
        },
        {
          "key": "",
          "field": "CBMQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "立方数",
          "description": "立方数"
        },
        {
          "key": "",
          "field": "WeightQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "吨数",
          "description": "吨数"
        },
        {
          "key": "",
          "field": "PalletQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "整托数",
          "description": "整托数（带托入库）"
        },
        {
          "key": "",
          "field": "BoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱数",
          "description": "箱数"
        },
        {
          "key": "",
          "field": "SpareQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "零散件数",
          "description": "零散件数"
        },
        {
          "key": "",
          "field": "NeedExtendParam",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否需要填写拓展参数",
          "description": "是否需要填写拓展参数"
        },
        {
          "key": "",
          "field": "UsePalletQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "使用托盘数",
          "description": "使用托盘数"
        },
        {
          "key": "",
          "field": "ShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运费",
          "description": "运费"
        },
        {
          "key": "",
          "field": "OtherFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "其他增值费",
          "description": "其他增值费"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "SupplierCode",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商编码",
          "description": "供应商编码"
        },
        {
          "key": "",
          "field": "SupplierName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商名称",
          "description": "供应商名称"
        },
        {
          "key": "",
          "field": "SupplierAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商地址",
          "description": "供应商详细地址"
        },
        {
          "key": "",
          "field": "SupplierUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商联系人",
          "description": "供应商联系人"
        },
        {
          "key": "",
          "field": "SupplierPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商电话",
          "description": "供应商电话"
        },
        {
          "key": "",
          "field": "SendDC",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货配送中心",
          "description": "发货配送中心"
        },
        {
          "key": "",
          "field": "SendOrgName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货机构名称",
          "description": "发货机构名称"
        },
        {
          "key": "",
          "field": "SendAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货地址",
          "description": "发货地址"
        },
        {
          "key": "",
          "field": "SendUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货人名",
          "description": "发货人名"
        },
        {
          "key": "",
          "field": "SendPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货电话",
          "description": "发货电话"
        },
        {
          "key": "",
          "field": "RecDC",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送中心名称",
          "description": "配送中心名称（城配往来单位编码）"
        },
        {
          "key": "",
          "field": "RecOrgName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送目的地",
          "description": "配送目的地，比如京东仓库的具体库名"
        },
        {
          "key": "",
          "field": "RecAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送目标详细地址",
          "description": "配送目标详细地址"
        },
        {
          "key": "",
          "field": "RecUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件人名",
          "description": "收件人名"
        },
        {
          "key": "",
          "field": "RecPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件电话",
          "description": "收件电话"
        },
        {
          "key": "",
          "field": "ExtendProps",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "奇门扩展字段",
          "description": "奇门扩展字段，JSON格式"
        },
        {
          "key": "",
          "field": "FeishuApprovalCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "飞书审批编号",
          "description": "飞书审批编号，用于库内报废出库审批"
        },
        {
          "key": "",
          "field": "FeishuApprovalStatus",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "飞书审批状态",
          "description": "飞书审批状态"
        },
        {
          "key": "",
          "field": "ChengpeiSignStatus",
          "type": "TINYINT",
          "required": "NULL",
          "default": "",
          "remark": "1=All=全部签收,\n2=Partial=部分签收,\n3=Rejected=全部拒收",
          "need_index": "Y",
          "title": "城配签收状态",
          "description": "城配单签收状态"
        },
        {
          "key": "",
          "field": "ChengpeiMemo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "城配签收备注",
          "description": "城配签收备注"
        },
        {
          "key": "",
          "field": "ChengpeiPicUrl",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "城配签收图片",
          "description": "城配签收图片，逗号分隔"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "InvMoveGroup",
      "sheet": "CWMInv",
      "title": "库内移动任务分组",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "InvMoveGroupStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "30=OnPicking=拣货中,\n50=Picked=完成拣货,\n70= Putaway = 上架中\n100=Completed=移库完成",
          "need_index": "Y",
          "title": "移库状态",
          "description": "移库状态,绑定箱码，写入此表时状态为拣货中\n分组下所有任务完成拣货时修改为完成拣货\n有一种商品上架时修改为上架中\n分组下所有任务完成时修改为移库完成"
        },
        {
          "key": "",
          "field": "PackingCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "载体条码",
          "description": "载体条码，或者是移库时承载的载体条码"
        },
        {
          "key": "",
          "field": "PickUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货人",
          "description": "拣货人"
        },
        {
          "key": "",
          "field": "PickUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货人名",
          "description": "拣货人名"
        },
        {
          "key": "",
          "field": "PickStartDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货领取时间",
          "description": "拣货领取时间(就是InDate)"
        },
        {
          "key": "",
          "field": "PickCompleteDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成拣货时间",
          "description": "完成拣货时间"
        },
        {
          "key": "",
          "field": "UpperUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架人",
          "description": "上架人"
        },
        {
          "key": "",
          "field": "UpperUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架人名",
          "description": "上架人名"
        },
        {
          "key": "",
          "field": "UpperCompleteDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架完成时间",
          "description": "上架完成时间(任务完成时间)"
        }
      ]
    },
    {
      "name": "InvMoveTask",
      "sheet": "CWMInv",
      "title": "库内移动任务，主要用于补货，优化库位等",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "InvMoveTaskType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ReplMove=两步补货,\n1=OptimizeMove=快速移库,\n2=InspectMove=拦截回库\n3=ClearUpMove=两步理货",
          "need_index": "Y",
          "title": "移库类型",
          "description": "移库类型，0=补货移库，1=快速移库，2=拦截订单回库的移库"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批次号",
          "description": "批次号"
        },
        {
          "key": "",
          "field": "OriginStorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣,\n1=Box=料箱,\n2=Pallet=托盘,\n3=GroundHeap=地堆",
          "need_index": "Y",
          "title": "源库位类型",
          "description": "源库位类型"
        },
        {
          "key": "",
          "field": "TargetStorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣,\n1=Box=料箱,\n2=Pallet=托盘,\n3=GroundHeap=地堆",
          "need_index": "Y",
          "title": "目标库位类型",
          "description": "目标库位类型"
        },
        {
          "key": "",
          "field": "OriginStorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "源库区ID",
          "description": "源库区ID"
        },
        {
          "key": "",
          "field": "TargetStorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "目标库区ID",
          "description": "目标库区ID"
        },
        {
          "key": "",
          "field": "OriginCellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "源库位",
          "description": "源库位，如果是异库位类型，源库位不能是零拣库位"
        },
        {
          "key": "",
          "field": "OriginProductInvCellJson",
          "type": "text",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货源库位库存JSON",
          "description": "拣货源库位库存JSON"
        },
        {
          "key": "",
          "field": "PackingCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "源载体条码",
          "description": "源载体条码，或者是移库时承载的载体条码"
        },
        {
          "key": "",
          "field": "RecommendTargetCellID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推荐目标库位",
          "description": "推荐目标库位"
        },
        {
          "key": "",
          "field": "MoveBoxCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "需要移库箱数",
          "description": "需要移库箱数"
        },
        {
          "key": "",
          "field": "MoveProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品移库数量",
          "description": "商品移库数量"
        },
        {
          "key": "",
          "field": "InvMoveTaskStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始状态,\n20=TaskLaunch=下发任务, \n30=OnPicking=拣货中,\n50=Picked=完成拣货,\n100=Completed=移库完成",
          "need_index": "Y",
          "title": "移库状态",
          "description": "移库状态,"
        },
        {
          "key": "",
          "field": "TaskGroupNo",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "任务批号",
          "description": "任务批号，同一批创建的任务拥有同一个批号"
        },
        {
          "key": "",
          "field": "IMGroupSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "任务分组编号",
          "description": "任务分组编号"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "PickUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货人",
          "description": "拣货人"
        },
        {
          "key": "",
          "field": "PickUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货人名",
          "description": "拣货人名"
        },
        {
          "key": "",
          "field": "PickStartDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "拣货领取时间",
          "description": "拣货领取时间"
        },
        {
          "key": "",
          "field": "PickCompleteDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "完成拣货时间",
          "description": "完成拣货时间"
        },
        {
          "key": "",
          "field": "UpperCompleteDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架完成时间",
          "description": "上架完成时间"
        }
      ]
    },
    {
      "name": "InvMoveTarget",
      "sheet": "CWMInv",
      "title": "库内移动任务的目标库位上架",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "InvMoveTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "移库任务编号",
          "description": "移库任务编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "TargetCellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "目标库位",
          "description": "目标库位"
        },
        {
          "key": "",
          "field": "UpperProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "目标上架商品数量",
          "description": "目标上架商品数量"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "InvMoveInterceptSO",
      "sheet": "CWMInv",
      "title": "库内移动任务的拦截回库订单包裹列表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "InterceptSOOptMode",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "0=SingleSO=逐单回库,\n1=BatchSO=批量回库",
          "need_index": "Y",
          "title": "回库作业模式",
          "description": "回库作业模式：0=逐单回库，1=批量回库"
        },
        {
          "key": "",
          "field": "TaskGroupNo",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "任务批号",
          "description": "任务批号，同一批创建的任务拥有同一个批号，与InvMoveTask表对应"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单系统编号"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "InvMoveTaskStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架任务状态",
          "description": "上架任务状态,与InvMoveTask表对应"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "InvCheckTask",
      "sheet": "CWMInv",
      "title": "盘点任务",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "TaskName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "任务名称",
          "description": "任务名称"
        },
        {
          "key": "",
          "field": "InvCheckType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=StandardCheck=标准盘点,\n2=DynamicCheck=日常动盘,\n9=FreeCheck=自由盘点",
          "need_index": "",
          "title": "盘点类型",
          "description": "盘点类型："
        },
        {
          "key": "",
          "field": "StockQtyFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=BlindCheck=盲盘,\n2=ShowCheck=明盘",
          "need_index": "",
          "title": "库存显示",
          "description": "库存显示表示：盲盘不显示当前数量，必须人工填写清点数量；明盘显示当前数量，默认清点数量一致，人工核对"
        },
        {
          "key": "",
          "field": "IsRetryCheck",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否, \n1=Yes=是",
          "need_index": "",
          "title": "是否复盘",
          "description": "是否为复盘任务"
        },
        {
          "key": "",
          "field": "RetryCheckRefTaskSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "复盘关联任务编号",
          "description": "复盘关联的原始任务编号"
        },
        {
          "key": "",
          "field": "VendorSysNoes",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "盘点商户",
          "description": "盘点商户编号，逗号分隔"
        },
        {
          "key": "",
          "field": "ProductSysNoes",
          "type": "Text",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "盘点商品",
          "description": "指定多个盘点的商品编号，逗号分隔"
        },
        {
          "key": "",
          "field": "StorageType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣,\n1=Box=料箱,\n2=Pallet=托盘,\n3=GroundHeap=地堆",
          "need_index": "Y",
          "title": "库区类型",
          "description": "库位类型，零拣库和地堆库均为混合存放模式，料箱库为按商品一库一箱存放模式，立体库位按商品一库一托存放模式。"
        },
        {
          "key": "",
          "field": "StorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库区ID",
          "description": "库区ID"
        },
        {
          "key": "",
          "field": "CellFlags",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "盘点良残标识，多个用逗号分隔"
        },
        {
          "key": "",
          "field": "RowNumStart",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "排起始号",
          "description": "盘点的排起始号(大于等于起始号）"
        },
        {
          "key": "",
          "field": "RowNumEnd",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "排截止号",
          "description": "盘点的排截止号（小于等于截止号）"
        },
        {
          "key": "",
          "field": "FloorNumStart",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "层起始号",
          "description": "盘点的层起始号(大于等于起始号）"
        },
        {
          "key": "",
          "field": "FloorNumEnd",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "层截止号",
          "description": "盘点的层截止号（小于等于截止号）"
        },
        {
          "key": "",
          "field": "CellNumStart",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "格起始号",
          "description": "盘点的格起始号(大于等于起始号）"
        },
        {
          "key": "",
          "field": "CellNumEnd",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "格截止号",
          "description": "盘点的格截止号（小于等于截止号）"
        },
        {
          "key": "",
          "field": "PlanInvCheckTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计划盘点时间",
          "description": "计划盘点时间"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InvCheckTaskStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=初始状态,  \n20=TaskLaunch=任务下发,\n50=OnProcessing=盘点作业中,\n//80=CheckOver=作业结束,\n100=Completed=任务完成",
          "need_index": "Y",
          "title": "任务状态",
          "description": "任务状态"
        },
        {
          "key": "",
          "field": "AdjustOrderFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "-10",
          "remark": "0=NoDifferent=盘点无差异, \n50=DoNotKnown=差异未知,\n100=HasDifferent=库存有差异",
          "need_index": "Y",
          "title": "库存差异",
          "description": "库存差异"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "InvCheckItem",
      "sheet": "CWMInv",
      "title": "盘点任务明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "InvCheckSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "任务编号",
          "description": "任务编号"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库位ID",
          "description": "库位ID:XX-XXX-XX-XXX,也等于Cell的BarCode"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "良残标识（冗余)"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "CellStockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "库位数量",
          "description": "库位实际数量，盘点时DB里的快照"
        },
        {
          "key": "",
          "field": "CellInvCheckQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "盘点数量",
          "description": "实际盘点数量"
        },
        {
          "key": "",
          "field": "CellDifferenceQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "差额数量",
          "description": "差额数量=InvCheckQty-StockQty"
        },
        {
          "key": "",
          "field": "InvCheckTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "盘点时间",
          "description": "盘点时间"
        },
        {
          "key": "",
          "field": "InvCheckUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "盘点人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InvCheckUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "盘点人名",
          "description": "盘点人名"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InvCheckItemStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoCheck=未盘, \n1=HasCheck=已盘",
          "need_index": "",
          "title": "明细状态",
          "description": "明细状态"
        }
      ]
    },
    {
      "name": "AdjustOrder",
      "sheet": "CWMInv",
      "title": "损益单",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "AdjustOrderType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=InvCheck=盘点损益单,\n9=Other=其它损益单",
          "need_index": "Y",
          "title": "损益单类型",
          "description": "损益单类型"
        },
        {
          "key": "",
          "field": "InvCheckSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "盘点任务编号",
          "description": "盘点任务编号"
        },
        {
          "key": "",
          "field": "InvCheckItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "盘点任务明细编号",
          "description": "盘点任务明细编号"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库位ID",
          "description": "库位ID:XX-XXX-XX-XXX"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "良残标识（冗余)"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "CellInvAdjustQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "损益数量",
          "description": "损益调整数量，正负数表示增和减"
        },
        {
          "key": "",
          "field": "AdjustOrderStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始化, \n100=HasCheck=损益完成",
          "need_index": "Y",
          "title": "损益单状态",
          "description": "损益单状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PCMRecord",
      "sheet": "CWMInv",
      "title": "包耗材出入库记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PCMRecordType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=InStock=入库,  \n1=OutStock=出库",
          "need_index": "Y",
          "title": "任务类型",
          "description": "任务类型"
        },
        {
          "key": "",
          "field": "OperatorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "经手人编号",
          "description": "经手人编号"
        },
        {
          "key": "",
          "field": "OperatorName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "经手人姓名",
          "description": "经手人姓名"
        },
        {
          "key": "",
          "field": "OperatorDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "经办时间",
          "description": "经办时间"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "说明",
          "description": "说明"
        },
        {
          "key": "",
          "field": "PCMRecordStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态,\n100=Completed=已完成",
          "need_index": "",
          "title": "记录状态",
          "description": "记录状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PCMRecordItem",
      "sheet": "CWMInv",
      "title": "包耗材出入库记录明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PCMRecordSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "任务编号",
          "description": "任务编号"
        },
        {
          "key": "",
          "field": "PCMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材编号",
          "description": "包耗材编号"
        },
        {
          "key": "",
          "field": "PCMQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        }
      ]
    },
    {
      "name": "TempPickItem",
      "sheet": "CWMInv",
      "title": "拣货明细临时存储表，用于提高效率批量插入波次拣货明细，再批量更新到库位库存上",
      "fields": [
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WaveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "波次编号",
          "description": "波次编号"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "拣货源库位地址",
          "description": "拣货源库位地址"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批次号",
          "description": "批次号"
        },
        {
          "key": "",
          "field": "ProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "需要拣选的商品数量"
        },
        {
          "key": "",
          "field": "BoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱数",
          "description": "如果是整箱或者整托拣选，显示箱数"
        }
      ]
    },
    {
      "name": "RMMaster",
      "sheet": "CWMInv",
      "title": "退货管理的主信息(Return Manager）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "OwnerCode",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "ERP货主编号",
          "description": "ERP货主编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "RMID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "退货单ID",
          "description": "退货单ID"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原订单系统编号",
          "description": "订单系统编号"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原订单ID",
          "description": "原订单ID"
        },
        {
          "key": "",
          "field": "SOWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原运单号",
          "description": "原运单号"
        },
        {
          "key": "",
          "field": "RMType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1= CutomerRefuse = 顾客拒收, \n2=CutomerReturn = 顾客退货, \n4=OutStockedSOInspectt=未发截回,\n5=OnExpressSOInspect=已发截回,\n9=ExpressReturn = 物流原因退回,",
          "need_index": "Y",
          "title": "退货类型",
          "description": "退换类型"
        },
        {
          "key": "",
          "field": "ErpOrderType",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "ERP的OrderType",
          "description": "ERP 的OrderType,主要用于记录，然后回传ERP使用"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "VendorThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户电商配置编号",
          "description": "商户电商及店铺配置编号"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回推状态确认",
          "description": "回推状态确认"
        },
        {
          "key": "",
          "field": "ConfirmMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传备注",
          "description": "回传备注"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "回传时间",
          "description": "回传时间"
        },
        {
          "key": "",
          "field": "ReturnWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退回运单号",
          "description": "退回运单号"
        },
        {
          "key": "",
          "field": "ReturnProvinceName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "退货人省",
          "description": "退货人省"
        },
        {
          "key": "",
          "field": "ReturnCityName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "退货人市",
          "description": "退货人市"
        },
        {
          "key": "",
          "field": "ReturnDistrictName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "退货人区",
          "description": "退货人区"
        },
        {
          "key": "",
          "field": "ReturnAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "退货人地址",
          "description": "退货人地址"
        },
        {
          "key": "",
          "field": "ReturnCustomerName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货人姓名",
          "description": "退货人姓名"
        },
        {
          "key": "",
          "field": "ReturnCustomerPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货人电话",
          "description": "退货人电话"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "TargetPOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "转入的入库单",
          "description": "转入的入库单"
        },
        {
          "key": "",
          "field": "RMStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Init=初始态,\n10=Received=已清点收货,\n20=ConfirmToPO=已转入库单,\n100=CompleteInStock=完成上架,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "RM收货状态",
          "description": "RM收货状态,RM收到货物后，作业流程：\n(1)创建RM初始态=1；(2)确认收货=10，(3)转退货入库单待收货=20；(4)入库流程，完成上架=100(每个商品都要有库位，不管什么库位)"
        },
        {
          "key": "",
          "field": "LockFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=VoidLock=作废锁定,\n9=HoldLock=暂停锁定",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识"
        },
        {
          "key": "",
          "field": "LockReason",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "锁定原因",
          "description": "锁定原因"
        },
        {
          "key": "",
          "field": "LockRMStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "锁定时RM状态",
          "description": "锁定时RM状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RMItem",
      "sheet": "CWMInv",
      "title": "退货管理的明细，按照商品以及明细类型和商品品质来记录的（创建时需要注意，同一订单，这三项不能完全相等）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "RMMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号，如果没有填批号但是填写了有效日期，批号则为有效日期的yyyyMMdd格式内容"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "SourceItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "应退数量",
          "description": "应退数量，原订单商品数量"
        },
        {
          "key": "",
          "field": "RecAvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收正品数量",
          "description": "实收正品数量"
        },
        {
          "key": "",
          "field": "RecImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收次品数量",
          "description": "实收次品数量"
        },
        {
          "key": "",
          "field": "RecWasteQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "实收废品数量",
          "description": "实收废品数量"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        }
      ]
    },
    {
      "name": "SPOrder",
      "sheet": "CWMInv",
      "title": "库内加工单StoreProcessOrder",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SPOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "加工单ID",
          "description": "加工单ID"
        },
        {
          "key": "",
          "field": "GroupID",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "导入批号",
          "description": "导入批号，同一批加工单赋予一个组号：yyMMddNNN"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "SPOrderType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=ToCombo=组合加工,\n2=SplitCombo=拆套加工",
          "need_index": "Y",
          "title": "加工类型",
          "description": "加工类型"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "出库单编号",
          "description": "出库单编号"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "入库单编号",
          "description": "入库单编号"
        },
        {
          "key": "",
          "field": "OrderCreateTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实际加工时间",
          "description": "实际加工开始时间，变为任务作业中时更新"
        },
        {
          "key": "",
          "field": "OrderCompleteTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实际完成时间",
          "description": "实际加工完成时间，变为加工完毕时更新"
        },
        {
          "key": "",
          "field": "PlanTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计划加工时间",
          "description": "计划加工时间"
        },
        {
          "key": "",
          "field": "PlanCloseTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预计关单时间",
          "description": "预计关单时间，数据要求来源于导入文件"
        },
        {
          "key": "",
          "field": "SupplierCode",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商编码",
          "description": "供应商编码"
        },
        {
          "key": "",
          "field": "SupplierName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商名称",
          "description": "供应商名称"
        },
        {
          "key": "",
          "field": "SupplierAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商地址",
          "description": "供应商详细地址"
        },
        {
          "key": "",
          "field": "SupplierUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商联系人",
          "description": "供应商联系人"
        },
        {
          "key": "",
          "field": "SupplierPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商电话",
          "description": "供应商电话"
        },
        {
          "key": "",
          "field": "SendDC",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货配送中心",
          "description": "发货配送中心"
        },
        {
          "key": "",
          "field": "SendOrgName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货机构名称",
          "description": "发货机构名称"
        },
        {
          "key": "",
          "field": "SendAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货地址",
          "description": "发货地址"
        },
        {
          "key": "",
          "field": "SendUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货人名",
          "description": "发货人名"
        },
        {
          "key": "",
          "field": "SendPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货电话",
          "description": "发货电话"
        },
        {
          "key": "",
          "field": "RecDC",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送中心名称",
          "description": "配送中心名称"
        },
        {
          "key": "",
          "field": "RecOrgName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送目的地",
          "description": "配送目的地，比如京东仓库的具体库名"
        },
        {
          "key": "",
          "field": "RecAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送目标详细地址",
          "description": "配送目标详细地址"
        },
        {
          "key": "",
          "field": "RecUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件人名",
          "description": "收件人名"
        },
        {
          "key": "",
          "field": "RecPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件电话",
          "description": "收件电话"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID",
          "description": "发往电商平台ID"
        },
        {
          "key": "",
          "field": "SPOrderStatus",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "0=Init=初始态,\n10=Confirmed=已确认,\n50=OnProcessing=任务作业中,\n100=Completed=加工完毕,\n-1=Void=已作废",
          "need_index": "",
          "title": "加工单状态",
          "description": "加工单状态，收到加工单时为初始态0，手动确认，商品组套全部检查通过；BO选择加工单，则加工单变为作业中。PO完成上架，加工单变为100"
        },
        {
          "key": "",
          "field": "LockFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=VoidLock=作废锁定,\n9=HoldLock=暂停锁定",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识"
        },
        {
          "key": "",
          "field": "LockReason",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "锁定原因",
          "description": "锁定原因"
        },
        {
          "key": "",
          "field": "LockSPOrderStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=初始态,\n10=OnProcess=作业中, \n100=Completed=加工完毕",
          "need_index": "",
          "title": "锁定时SPO状态",
          "description": "锁定时SPO状态"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回推状态确认",
          "description": "回推状态确认"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传时间",
          "description": "回传时间"
        },
        {
          "key": "",
          "field": "PlanQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计划加工后的产品数量",
          "description": "计划加工后的产品数量"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "SPOMaterial",
      "sheet": "CWMInv",
      "title": "加工单原材料ITEM",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SPOrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "加工单SysNo",
          "description": "加工单SysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "需要拣选的商品数量"
        },
        {
          "key": "",
          "field": "RatioQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "配比数量",
          "description": "配比数量"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "良残标识"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号，如果没有填批号但是填写了有效日期，批号则为有效日期的yyyyMMdd格式内容"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        }
      ]
    },
    {
      "name": "SPOProduct",
      "sheet": "CWMInv",
      "title": "加工单成品ITEM",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SPOrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "加工单SysNo",
          "description": "加工单SysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "需要拣选的商品数量"
        },
        {
          "key": "",
          "field": "RatioQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "配比数量",
          "description": "配比数量"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "良残标识"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号，如果没有填批号但是填写了有效日期，批号则为有效日期的yyyyMMdd格式内容"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量"
        },
        {
          "key": "",
          "field": "BoxCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实际整箱数",
          "description": "实际整箱数"
        },
        {
          "key": "",
          "field": "SpareCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实际零散数",
          "description": "实际零散数"
        },
        {
          "key": "",
          "field": "ReCheckStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=未复核, \n100=Completed=复核完成",
          "need_index": "",
          "title": "复核状态",
          "description": "复核状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        }
      ]
    },
    {
      "name": "RMRegister",
      "sheet": "CWMInv",
      "title": "退货登记的主信息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "RMRegisterType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Vendor = 按商户登记,  \n1=Mix=混合登记,\n2=MixSplit=混合登记拆分",
          "need_index": "Y",
          "title": "退货登记类型",
          "description": "退货登记类型"
        },
        {
          "key": "",
          "field": "RMType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "2=CutomerReturn = 顾退,  \n5=OnExpressSOInspect=原返",
          "need_index": "Y",
          "title": "退货类型",
          "description": "退换类型，分为原返和客退两种类型，原返分为未发运和已发运（系统根据是否揽收判断），客退则为顾客退回"
        },
        {
          "key": "",
          "field": "PackageCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "已登记的包裹数量",
          "description": "已登记的包裹数量"
        },
        {
          "key": "",
          "field": "SourceRMRSysNo",
          "type": "INT",
          "required": "null",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "源退货登记编号",
          "description": "混合登记拆分 时记录混合登记的编号"
        },
        {
          "key": "",
          "field": "TargetPOSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "转入的入库单",
          "description": "转入的入库单，标准一张入库单模式"
        },
        {
          "key": "",
          "field": "TargetImperfectPOSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "转入的次品入库单",
          "description": "转入的次品入库单，两张入库单模式的次品单\n(手动绑定PO单)"
        },
        {
          "key": "",
          "field": "RMRegisterStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Init=初始态,\n10=Registed=完成退货登记,\n20=Collect=退货单集齐,\n50=OnUppering=退货上架作业中,\n100=Complete=完成上架",
          "need_index": "Y",
          "title": "退货登记状态",
          "description": "退货登记状态，作业流程：\n(1)创建初始态=1；(2)本次需要退货处理的包裹扫描完成=10，(3)本次所有包裹客户已推RM单，手动点击集齐=20；(4)点击下发作业任务,生成退货PO及上架任务=50 （5）本次所有包裹中的商品上架完成，点击上架完成=100"
        },
        {
          "key": "",
          "field": "SendIMStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=未发送,\n10=Submit=已提交待发送,\n20=Sending=发送中,\n100=Complete=已发送",
          "need_index": "Y",
          "title": "发送到客户群状态",
          "description": "发送未推退货单的包裹信息状态。"
        },
        {
          "key": "",
          "field": "SendIMDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发送时间",
          "description": "发送时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RMRegisterPackage",
      "sheet": "CWMInv",
      "title": "退货登记包裹明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RMRSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "退货登记编号",
          "description": "退货登记编号"
        },
        {
          "key": "",
          "field": "RMWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退回运单号",
          "description": "退回运单号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回推状态确认",
          "description": "回推状态确认"
        },
        {
          "key": "",
          "field": "ConfirmMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传备注",
          "description": "回传备注"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "回传时间",
          "description": "回传时间"
        },
        {
          "key": "",
          "field": "RMType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "2=CutomerReturn = 顾客退货, \n5=OnExpressSOInspect=已发运退回",
          "need_index": "Y",
          "title": "退货类型",
          "description": "退换类型，分为原返和客退两种类型，原返分为未发运和已发运（系统根据是否揽收判断），客退则为顾客退回"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RMRegisterMixPackage",
      "sheet": "CWMInv",
      "title": "退货登记混合登记包裹",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "RMRSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "退货登记编号",
          "description": "退货登记编号"
        },
        {
          "key": "",
          "field": "RMWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退回运单号",
          "description": "退回运单号"
        },
        {
          "key": "",
          "field": "RMType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "2=CutomerReturn = 客退,\n5=OnExpressSOInspect=原返",
          "need_index": "Y",
          "title": "退货类型",
          "description": "退换类型，分为原返和客退两种类型，原返分为未发运和已发运（系统根据是否揽收判断），客退则为顾客退回"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RMRegisterMixItem",
      "sheet": "CWMInv",
      "title": "退货混合登记商品明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RMRSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货登记编号",
          "description": "退货登记编号"
        },
        {
          "key": "",
          "field": "RMRMixPackageSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货登记包裹编号",
          "description": "退货登记包裹编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "SourceItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "应退数量",
          "description": "应退数量，原订单商品数量"
        },
        {
          "key": "",
          "field": "RecAvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收正品数量",
          "description": "实收正品数量"
        },
        {
          "key": "",
          "field": "RecImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收次品数量",
          "description": "实收次品数量"
        },
        {
          "key": "",
          "field": "RecWasteQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收废品数量",
          "description": "实收废品数量"
        }
      ]
    },
    {
      "name": "RMRPackageRel",
      "sheet": "CWMInv",
      "title": "退货登记包裹对应原订单和RO单的关系",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RMRPackageSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "登记包裹号",
          "description": "登记包裹号"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原订单系统编号",
          "description": "订单系统编号"
        },
        {
          "key": "",
          "field": "RMSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "RM编号",
          "description": "RM编号"
        }
      ]
    },
    {
      "name": "RMRegisterItem",
      "sheet": "CWMInv",
      "title": "退货登记商品明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编号",
          "description": "编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RMRSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货登记编号",
          "description": "退货登记编号"
        },
        {
          "key": "",
          "field": "RMRPackageSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货登记包裹编号",
          "description": "退货登记包裹编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "SourceItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "应退数量",
          "description": "应退数量，原订单商品数量"
        },
        {
          "key": "",
          "field": "RecAvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收正品数量",
          "description": "实收正品数量"
        },
        {
          "key": "",
          "field": "RecImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收次品数量",
          "description": "实收次品数量"
        },
        {
          "key": "",
          "field": "RecWasteQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实收废品数量",
          "description": "实收废品数量"
        },
        {
          "key": "",
          "field": "ActualISJson",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "入库批次",
          "description": "入库批次，入库完成后分配"
        }
      ]
    },
    {
      "name": "ProductTransfer",
      "sheet": "CWMInv",
      "title": "货权转移主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BOVendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "转出商户SysNo",
          "description": "转出商户SysNo"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "转出的BO单",
          "description": "转出的BO单"
        },
        {
          "key": "",
          "field": "POVendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "转入商户SysNo",
          "description": "转入商户SysNo"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "转入的PO单",
          "description": "转入的PO单"
        },
        {
          "key": "",
          "field": "ProductTransferStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Init=初始态,\n20=OnSetting=设置中,\n50=SetOk=设置完成,\n100=Complete=完成转移",
          "need_index": "Y",
          "title": "转移状态",
          "description": "转移状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductTransferItem",
      "sheet": "CWMInv",
      "title": "货权转移数据明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ProductTransferSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货权转移编号",
          "description": "货权转移编号"
        },
        {
          "key": "",
          "field": "BOProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "BO单商品编号",
          "description": "BO单商品编号"
        },
        {
          "key": "",
          "field": "BOProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "BO单商品数量",
          "description": "BO单商品数量"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "源库位ID",
          "description": "源库位ID"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号，如果没有填批号但是填写了有效日期，批号则为有效日期的yyyyMMdd格式内容"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "TransferQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "转移数量",
          "description": "转移数量"
        },
        {
          "key": "",
          "field": "POProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "PO单商品",
          "description": "PO单商品"
        }
      ]
    },
    {
      "name": "BTDailyReport",
      "sheet": "CWMInv",
      "title": "业务组工作日报",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BizTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组编号",
          "description": "业务组编号"
        },
        {
          "key": "",
          "field": "WorkDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "日期",
          "description": "日期"
        },
        {
          "key": "",
          "field": "TotalSOCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单出库总量",
          "description": "订单出库数（用于管理页显示，详情页实时查询）"
        },
        {
          "key": "",
          "field": "TotalSOPCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单出库包裹数",
          "description": "订单出库包裹数（用于管理页显示，详情页实时查询）"
        },
        {
          "key": "",
          "field": "SORegularWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单固定工人时",
          "description": "订单固定工人时"
        },
        {
          "key": "",
          "field": "SOBorrowWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单其他组借用人时",
          "description": "订单其他组借用人时"
        },
        {
          "key": "",
          "field": "SODailyWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单日结工人时",
          "description": "订单日结工人时"
        },
        {
          "key": "",
          "field": "SONotOut",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单实际未出库",
          "description": "订单系统出库了，实际还没有作业完"
        },
        {
          "key": "",
          "field": "SOMemo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单备注",
          "description": "订单备注"
        },
        {
          "key": "",
          "field": "TotalBOCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO出库总量",
          "description": "BO出库总量"
        },
        {
          "key": "",
          "field": "BORegularWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单固定工人时",
          "description": "BO单固定工人时"
        },
        {
          "key": "",
          "field": "BOBorrowWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单其他组借用人时",
          "description": "BO单其他组借用人时"
        },
        {
          "key": "",
          "field": "BODailyWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单日结工人时",
          "description": "BO单日结工人时"
        },
        {
          "key": "",
          "field": "BOMemo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "BO单备注",
          "description": "BO单备注"
        },
        {
          "key": "",
          "field": "OtherRegularWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "其他工作固定工人时",
          "description": "其他工作固定工人时"
        },
        {
          "key": "",
          "field": "OtherBorrowWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "其他工作其他组借用人时",
          "description": "其他工作其他组借用人时"
        },
        {
          "key": "",
          "field": "OtherDailyWorkerHour",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "其他工作日结工人时",
          "description": "其他工作日结工人时"
        },
        {
          "key": "",
          "field": "OtherMemo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "其他工作备注",
          "description": "其他工作备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "BizExceptionRecord",
      "sheet": "CWMInv",
      "title": "业务异常记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BizExceptionRecordType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Pick=拣货",
          "need_index": "Y",
          "title": "异常记录类型",
          "description": "异常记录类型"
        },
        {
          "key": "",
          "field": "BizSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务编号",
          "description": "拣货任务编号"
        },
        {
          "key": "",
          "field": "BizItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "明细编号",
          "description": "明细编号：pickitem.SysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批次号",
          "description": "批次号"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "库位",
          "description": "库位"
        },
        {
          "key": "",
          "field": "Qty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "BizExceptionRecordStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=待处理,\n1=OnSetting=处理中,\n10=SetOK=设置完成,\n100=Complate=已完结",
          "need_index": "Y",
          "title": "异常处理状态",
          "description": "异常处理状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "其它说明",
          "description": "其它说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "BizExceptionRecordDetail",
      "sheet": "CWMInv",
      "title": "业务异常记录处理明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BizExceptionRecordSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "异常记录SysNo",
          "description": "异常记录SysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批次号",
          "description": "批次号"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "库位",
          "description": "库位"
        },
        {
          "key": "",
          "field": "Qty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "其它说明",
          "description": "其它说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "AdditionalService",
      "sheet": "CWMInv",
      "title": "增值服务记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorBizDicSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务字典SysNo",
          "description": "业务字典SysNo"
        },
        {
          "key": "",
          "field": "BillCategory",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务单据分类",
          "description": "业务分类，不同应用类型不同分类"
        },
        {
          "key": "",
          "field": "BillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "业务单据SysNo",
          "description": "业务单据SysNo"
        },
        {
          "key": "",
          "field": "BillDetailSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "业务单据明细SysNo",
          "description": "业务单据明细SysNo"
        },
        {
          "key": "",
          "field": "ServiceQty",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "服务数量",
          "description": "服务数量"
        }
      ]
    },
    {
      "name": "RMRItemRequest",
      "sheet": "CWMInv",
      "title": "退货登记明细的特殊要求",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RMRSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "退货登记编号",
          "description": "退货登记编号"
        },
        {
          "key": "",
          "field": "RMRItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "登记商品明细SysNo",
          "description": "登记商品明细SysNo"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "商品批号",
          "description": "商品批号"
        },
        {
          "key": "",
          "field": "VendorBizDicSysNo1",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "业务字典SysNo1",
          "description": "业务字典SysNo,相当于BizDicType下，BizDicCategory下的具体值的编号"
        },
        {
          "key": "",
          "field": "VendorBizDicSysNo2",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "业务字典SysNo2",
          "description": "业务字典SysNo,相当于BizDicType下，BizDicCategory下的具体值的编号"
        },
        {
          "key": "",
          "field": "VendorBizDicSysNo3",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "业务字典SysNo3",
          "description": "业务字典SysNo,相当于BizDicType下，BizDicCategory下的具体值的编号"
        },
        {
          "key": "",
          "field": "RequestQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "登记数量",
          "description": "登记数量"
        },
        {
          "key": "",
          "field": "BarCode",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "条码",
          "description": "条码"
        },
        {
          "key": "",
          "field": "Param1",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备用参数1",
          "description": "备用参数1"
        },
        {
          "key": "",
          "field": "Param2",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备用参数2",
          "description": "备用参数2"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "SSKeyTheory",
      "sheet": "CWMInv",
      "title": "同构理论数据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "SSKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "同构Key",
          "description": "同构Key"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包材ID",
          "description": "包材ID"
        },
        {
          "key": "",
          "field": "SOCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单数量",
          "description": "订单数量"
        },
        {
          "key": "",
          "field": "SOWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单重量",
          "description": "订单重量"
        },
        {
          "key": "",
          "field": "TheoryWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "理论重量",
          "description": "理论重量"
        },
        {
          "key": "",
          "field": "ExampleSO",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "示例订单",
          "description": "示例订单"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(255)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "TempSSKeyTheory",
      "sheet": "CWMInv",
      "title": "同构理论数据临时表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "SSKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "同构Key",
          "description": "同构Key"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包材ID",
          "description": "包材ID"
        },
        {
          "key": "",
          "field": "SOCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单数量",
          "description": "订单数量"
        },
        {
          "key": "",
          "field": "SOWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单重量",
          "description": "订单重量"
        },
        {
          "key": "",
          "field": "TheoryWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "理论重量",
          "description": "理论重量"
        },
        {
          "key": "",
          "field": "ExampleSO",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "示例订单",
          "description": "示例订单"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(255)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "QASOMgt",
      "sheet": "CWMInv",
      "title": "质量管理跟踪表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单号",
          "description": "订单号"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID,冗余",
          "description": "电商平台ID"
        },
        {
          "key": "",
          "field": "ThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称，冗余显示用"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "SODate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单时间",
          "description": "订单时间"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间，即订单的回传时间"
        },
        {
          "key": "",
          "field": "OutStockDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间"
        },
        {
          "key": "",
          "field": "ShipCollectedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "揽收时间",
          "description": "揽收时间"
        },
        {
          "key": "",
          "field": "IsShipCollected",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=NoShipCollected=未揽收, \n2=HasShipCollected=已揽收",
          "need_index": "",
          "title": "是否揽收",
          "description": "是否揽收"
        },
        {
          "key": "",
          "field": "ExceptionReason",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=待确认,\n101=TeamOmission=业务组库内遗留,\n102=TransferOmission=3PL交接遗留,\n103=ErrTransferShip=快递错分件,\n201=CollectedNoData=揽收无到件信息",
          "need_index": "Y",
          "title": "异常原因",
          "description": "异常原因，除了未揽收的包裹，如果是数据揽收模式，并且无到件信息，也可视为交接异常，做后续跟踪"
        },
        {
          "key": "",
          "field": "ExceptionProcess",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=待处理,\n1=NoException=无异常,\n100=TransferCommon=转为正常,\n101=PackageErrorProcess=错漏发补发,\n102=PackageLossProcess=丢件补发,\n201=RouteRenewSO=客户已建补发单,\n202=RouteResendSO=线下单独补发,\n203=RouteLossRepay=记丢件赔付,\n999=Other=其它(备注)",
          "need_index": "Y",
          "title": "异常处理",
          "description": "异常处理，由质量员确认处理"
        },
        {
          "key": "",
          "field": "ExceptionMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理备注",
          "description": "异常处理备注"
        },
        {
          "key": "",
          "field": "ExceptionProcessUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "处理人",
          "description": "处理人"
        },
        {
          "key": "",
          "field": "ExceptionProcessDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理时间",
          "description": "处理时间"
        },
        {
          "key": "",
          "field": "TrackResult",
          "type": "INT",
          "required": "0",
          "default": "",
          "remark": "0=Init=待处理,\n1=NoException=无异常,\n100=PackageReturn=已退回仓库,\n101=LossRepay=超时丢件赔付",
          "need_index": "",
          "title": "跟踪结果",
          "description": "跟踪结果，未揽收错分件退回时，需要质量员扫描自动处理为已退回仓库，已揽收退回，在销退数据中如果已收到，会同步此处已退回。"
        },
        {
          "key": "",
          "field": "TrackMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "跟踪备注",
          "description": "跟踪备注"
        },
        {
          "key": "",
          "field": "TrackUserName",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "跟踪处理人",
          "description": "跟踪处理人"
        },
        {
          "key": "",
          "field": "TrackDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "跟踪处理时间",
          "description": "跟踪处理时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "VirtualInvOpeate",
      "sheet": "CWMInv",
      "title": "虚拟库存操作",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "OpeateStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=init=初始态,\n10=Opeation=设置中,\n50=Opeated=已设置,\n100=Complete=已完结,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "VirtualInvOpeateDetail",
      "sheet": "CWMInv",
      "title": "虚拟库存操作明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "OpeateSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "主表SysNo",
          "description": "主表SysNo"
        },
        {
          "key": "",
          "field": "PICSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "库位",
          "description": "库位"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品",
          "description": "商品"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批次",
          "description": "批次"
        },
        {
          "key": "",
          "field": "Qty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RMPackageSignin",
      "sheet": "CWMInv",
      "title": "消退回来的包裹送达仓库进行签收交接的主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "到库签收交接编号",
          "description": "到库签收交接编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipName",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递名称",
          "description": "快递名称，对应cwmmain.ShipType表的ShortName"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "开始时间",
          "description": "开始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "结束时间",
          "description": "结束时间"
        },
        {
          "key": "",
          "field": "PackageCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包裹数量",
          "description": "包裹数量"
        },
        {
          "key": "",
          "field": "PackageSigninStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Signin=到库交接中,\n90=Signed=交接完成,\n100=Complete=已完结,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "Courier",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递员",
          "description": "快递员"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RMPackageSigninDetail",
      "sheet": "CWMInv",
      "title": "消退回来的包裹送达仓库进行到库交接明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SigninSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "到库签收交接编号",
          "description": "到库签收交接编号"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "RMType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "2=CutomerReturn = 客退, \n5=OnExpressSOInspect=原返",
          "need_index": "Y",
          "title": "退货类型",
          "description": "退货类型"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户编号",
          "description": "商户编号，原返自动写入，客退人工判断"
        },
        {
          "key": "",
          "field": "RMPackageState",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Common=正常,\n1=Damage=破损,\n9=Empty=空包",
          "need_index": "Y",
          "title": "包裹状况",
          "description": "包裹状况"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，默认都是有效，删除时设为无效，需输入备注说明"
        },
        {
          "key": "",
          "field": "PackageDisposeStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "0=Pending=待处理,\n10=Processing=处理中,\n50=Processed=已处理,\n60=ToReceiveProcessed=移交收货处理,\n70=LostInWarehouse=库内遗失,\n80=Forwarded=已转寄,\n99=NotProcessed=无需处理,",
          "need_index": "Y",
          "title": "包裹处理状态",
          "description": "待处理：初始态就是待处理。\n处理中：只要进入了销退任务，就是处理中；删除后返回待处理。\n已处理：销退任务上架了。\n无需处理/移交收货处理/库内遗失：批量勾选，填写备注说明。\n已转寄：逐单勾选，填写转寄单号到备注中。"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RMPackageSigninImg",
      "sheet": "CWMInv",
      "title": "消退回来的包裹送达仓库进行到库交接签名图片",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "DetailSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "到库签收交接明细编号",
          "description": "到库签收交接明细编号"
        },
        {
          "key": "",
          "field": "SigninSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "到库签收交接编号",
          "description": "到库签收交接编号"
        },
        {
          "key": "",
          "field": "ImgUrl",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库签收交接图片路径",
          "description": "到库签收交接图片路径"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，默认都是有效，删除时设为无效，需输入备注说明"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductInvChange",
      "sheet": "CWMInv",
      "title": "库存异动记录，用于相关异动回传ERP，目前有良残转换、批次调整",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RM编号",
          "description": "RM编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "ChangeStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=int=初始态,\n100=Complete=已完成",
          "need_index": "Y",
          "title": "异动状态",
          "description": "异动状态"
        },
        {
          "key": "",
          "field": "ChangeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=CellFlagChange=良残转换,\n2=BatchChange=批次调整,\n3=QtyChange=库存调整",
          "need_index": "Y",
          "title": "异动类型",
          "description": "异动类型"
        },
        {
          "key": "",
          "field": "RefCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "关联的编号",
          "description": "关联的编号"
        },
        {
          "key": "",
          "field": "RefSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "关联的系统编号",
          "description": "关联的系统编号"
        },
        {
          "key": "",
          "field": "ConfirmStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=INIT=未回传,\n10000=Complete=已回传,\n-1=Failed=回传失败,\n-2=NoNeed=无需回传",
          "need_index": "Y",
          "title": "回传状态",
          "description": "回传状态"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传时间",
          "description": "回传时间"
        },
        {
          "key": "",
          "field": "ConfirmMemo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回传说明",
          "description": "回传说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，默认都是有效，删除时设为无效，需输入备注说明"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ProductInvChangeDetail",
      "sheet": "CWMInv",
      "title": "库存异动记录明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "明细编号",
          "description": "明细编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ChangeSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "异动记录编号",
          "description": "异动记录编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库位",
          "description": "库位"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批次",
          "description": "批次"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库位标记",
          "description": "库位标记"
        },
        {
          "key": "",
          "field": "ChangeQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "异动数量",
          "description": "异动数量，增加为正，减少为负"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PTMaster",
      "sheet": "CWMInv",
      "title": "预处理单",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "平台名称",
          "description": "平台名称"
        },
        {
          "key": "",
          "field": "PTID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "预处理ID",
          "description": "预处理ID，系统自动生成，可以修改,可以重复"
        },
        {
          "key": "",
          "field": "PTStatus",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Init=初始态,\n10=Confirmed=已确认\n50=OnProcessing=作业中,\n100=Completed=已完成,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "预处理状态",
          "description": "预处理状态。\n有系统单据、或者有移库任务就变为作业中。\n有系统单据的系统单据全部完成或者无系统单据则手动点击完成按钮变为已完结。"
        },
        {
          "key": "",
          "field": "PTConfirmOrder",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Init=未确认,\n1=SysOrder=已确认系统单据,\n2=ExtOrder=已确认外部单据,\n10=All=已确认所有单据",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PTSysOrder",
      "sheet": "CWMInv",
      "title": "预处理单系统单据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "明细编号",
          "description": "明细编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PTSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "预处理编号",
          "description": "预处理编号"
        },
        {
          "key": "",
          "field": "OrderType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统单据类型",
          "description": "系统单据类型"
        },
        {
          "key": "",
          "field": "OrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统单据编号",
          "description": "系统单据编号"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，只有当作废预处理的时候才是无效"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PTSysOrderItem",
      "sheet": "CWMInv",
      "title": "预处理单系统单据商品明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "明细编号",
          "description": "明细编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PTSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "预处理编号",
          "description": "预处理编号"
        },
        {
          "key": "",
          "field": "PTOrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统单据SysNo",
          "description": "PTSysOrder.SysNo"
        },
        {
          "key": "",
          "field": "OrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统单据编号",
          "description": "系统单据编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品",
          "description": "商品"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批次",
          "description": "批次"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发出箱规",
          "description": "发出箱规"
        },
        {
          "key": "",
          "field": "Remark",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注，单据明细的备注"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PTExtOrder",
      "sheet": "CWMInv",
      "title": "预处理单外部单据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ExtOrderID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "外部单据ID",
          "description": "外部单据ID"
        },
        {
          "key": "",
          "field": "PTSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "预处理编号",
          "description": "预处理编号"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态，只有当作废预处理的时候才是无效"
        },
        {
          "key": "",
          "field": "OrderCreateTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实际加工时间",
          "description": "实际加工开始时间，变为任务作业中时更新"
        },
        {
          "key": "",
          "field": "OrderCompleteTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实际完成时间",
          "description": "实际加工完成时间，变为加工完毕时更新"
        },
        {
          "key": "",
          "field": "PlanTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计划加工时间",
          "description": "计划加工时间"
        },
        {
          "key": "",
          "field": "PlanCloseTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "预计关单时间",
          "description": "预计关单时间，数据要求来源于导入文件"
        },
        {
          "key": "",
          "field": "SupplierCode",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商编码",
          "description": "供应商编码"
        },
        {
          "key": "",
          "field": "SupplierName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商名称",
          "description": "供应商名称"
        },
        {
          "key": "",
          "field": "SupplierAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商地址",
          "description": "供应商详细地址"
        },
        {
          "key": "",
          "field": "SupplierUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商联系人",
          "description": "供应商联系人"
        },
        {
          "key": "",
          "field": "SupplierPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "供应商电话",
          "description": "供应商电话"
        },
        {
          "key": "",
          "field": "SendDC",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货配送中心",
          "description": "发货配送中心"
        },
        {
          "key": "",
          "field": "SendOrgName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货机构名称",
          "description": "发货机构名称"
        },
        {
          "key": "",
          "field": "SendAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货地址",
          "description": "发货地址"
        },
        {
          "key": "",
          "field": "SendUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货人名",
          "description": "发货人名"
        },
        {
          "key": "",
          "field": "SendPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货电话",
          "description": "发货电话"
        },
        {
          "key": "",
          "field": "RecDC",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送中心名称",
          "description": "配送中心名称"
        },
        {
          "key": "",
          "field": "RecOrgName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送目的地",
          "description": "配送目的地，比如京东仓库的具体库名"
        },
        {
          "key": "",
          "field": "RecAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送目标详细地址",
          "description": "配送目标详细地址"
        },
        {
          "key": "",
          "field": "RecUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件人名",
          "description": "收件人名"
        },
        {
          "key": "",
          "field": "RecPhone",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收件电话",
          "description": "收件电话"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PTMExtOrderItem",
      "sheet": "CWMInv",
      "title": "预处理单外部单据明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "明细编号",
          "description": "明细编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PTSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "预处理编号",
          "description": "预处理编号"
        },
        {
          "key": "",
          "field": "ExtOrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统单据编号",
          "description": "系统单据编号"
        },
        {
          "key": "",
          "field": "ExtProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品",
          "description": "商品"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批次",
          "description": "批次"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "生产日期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "过期日期",
          "description": "过期日期"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发出箱规",
          "description": "发出箱规"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PTMExtOrderProduct",
      "sheet": "CWMInv",
      "title": "预处理单外部单据对应系统商品(hold)",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "明细编号",
          "description": "明细编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "PTSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "预处理编号",
          "description": "预处理编号"
        },
        {
          "key": "",
          "field": "ExtOrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "外部单据系统编号",
          "description": "外部单据系统编号"
        },
        {
          "key": "",
          "field": "ExtProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "外部商品",
          "description": "外部商品"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品",
          "description": "商品"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批次",
          "description": "批次"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ComboTask",
      "sheet": "CWMInv",
      "title": "套组任务",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户",
          "description": "商户"
        },
        {
          "key": "",
          "field": "ECComboSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "套组编号",
          "description": "套组编号"
        },
        {
          "key": "",
          "field": "ComboName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "套组名称",
          "description": "套组名称（冗余）"
        },
        {
          "key": "",
          "field": "SameStructureKey",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "套组同构key",
          "description": "套组同构key（冗余）"
        },
        {
          "key": "",
          "field": "ComboTaskStatus",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Init=初始态,\n50=OnProcessing=作业中,\n100=Completed=已完成",
          "need_index": "Y",
          "title": "任务状态",
          "description": "任务状态。\n设置了子商品移库任务变为作业中。\n全部上架后或者手动修改已完成。"
        },
        {
          "key": "",
          "field": "ComboTaskType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Assembled=组套,\n1=Disassembled=拆套,",
          "need_index": "",
          "title": "套组任务类型",
          "description": "套组任务类型。组套还是拆套，默认组套"
        },
        {
          "key": "",
          "field": "TaskCellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "套组任务库位",
          "description": "套组任务库位"
        },
        {
          "key": "",
          "field": "ComboQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "组套数量",
          "description": "组套数量"
        },
        {
          "key": "",
          "field": "UpperQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架数量",
          "description": "上架数量"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ComboTaskItem",
      "sheet": "CWMInv",
      "title": "套组任务商品明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "明细编号",
          "description": "明细编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CTSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "套组任务编号",
          "description": "套组任务编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品编号",
          "description": "WMS中具体组套商品"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "所组套组一共所需商品数量"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "DeliveryTask",
      "sheet": "CWMInv",
      "title": "配送任务主表-对应的一辆车、一条线路、一个司机、一批订单(BO)",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SCSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "客户公司编号",
          "description": "客户公司的系统编号"
        },
        {
          "key": "",
          "field": "TaskID",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "任务ID",
          "description": "任务ID,方便沟通：YYYYMMDD-序号"
        },
        {
          "key": "",
          "field": "TaskName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "任务名称",
          "description": "任务名称"
        },
        {
          "key": "",
          "field": "PlanDeliverTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计划出发时间",
          "description": "计划出发时间"
        },
        {
          "key": "",
          "field": "VehicleSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "配送车辆",
          "description": "实际配送车辆"
        },
        {
          "key": "",
          "field": "DriverSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "配送司机",
          "description": "实际配送司机"
        },
        {
          "key": "",
          "field": "PublishDeliveryTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "任务发布时间",
          "description": "任务发布时间"
        },
        {
          "key": "",
          "field": "DriverGetDeliveryTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "司机接收任务时间",
          "description": "司机接收任务时间"
        },
        {
          "key": "",
          "field": "DeliverStartTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "实际出发时间",
          "description": "实际出发时间"
        },
        {
          "key": "",
          "field": "DeliverEndTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "实际配送完毕时间",
          "description": "实际配送完毕时间"
        },
        {
          "key": "",
          "field": "DeliveryTaskStatus",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "0=Init=初始草稿,\n10=PublishDelivery=任务已发布,\n20=GetDelivery=已接收任务,\n50=OnDelivery=配送中,\n100=Completed=配送完成,\n-1=Void=已作废",
          "need_index": "Y",
          "title": "配送任务状态",
          "description": "配送任务状态，所有订单装车确认后，变为配送中。\n前期：在后台手动确认和手动关闭；二期开发司机端，由司机在小程序上逐单确认和逐单送达签收。"
        },
        {
          "key": "",
          "field": "FromAddress",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "出发地",
          "description": "出发地"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人编号",
          "description": "修改人编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人姓名",
          "description": "修改人姓名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "DeliveryTaskDest",
      "sheet": "CWMInv",
      "title": "配送任务子表-目的地明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "DeliveryTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "配送任务表系统编号",
          "description": "配送任务表系统编号"
        },
        {
          "key": "",
          "field": "ThirdPartnerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "计划配送的往来单位",
          "description": "计划配送的往来单位"
        },
        {
          "key": "",
          "field": "StationName",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "配送点名称",
          "description": "配送点名称，默认往来单位名称"
        },
        {
          "key": "",
          "field": "StationContact",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送点联系人",
          "description": "配送点联系人，默认往来单位联系人"
        },
        {
          "key": "",
          "field": "StationPhone",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送点电话",
          "description": "配送点电话，默认往来单位电话"
        },
        {
          "key": "",
          "field": "StationAddress",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送点地址",
          "description": "配送点地址，默认往来单位地址"
        },
        {
          "key": "",
          "field": "Longitude",
          "type": "DECIMAL(10,6)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "经度",
          "description": "经度，小数点后不超过6位，默认往来单位经度"
        },
        {
          "key": "",
          "field": "Latitude",
          "type": "DECIMAL(10,6)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "纬度",
          "description": "纬度，小数点后不超过6位，默认往来单位纬度"
        },
        {
          "key": "",
          "field": "ActualLongitude",
          "type": "DECIMAL(10,6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实际到达经度",
          "description": "实际到达经度(以后有司机端时在确认送达签收时更新)"
        },
        {
          "key": "",
          "field": "ActualLatitude",
          "type": "DECIMAL(10,6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实际到达纬度",
          "description": "实际到达纬度(以后有司机端时在确认送达签收时更新)"
        },
        {
          "key": "",
          "field": "OrderNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送点先后顺序",
          "description": "配送点先后顺序, 越小越先送，从1开始"
        },
        {
          "key": "",
          "field": "ArriveDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "送达时间",
          "description": "送达时间，司机到达的时间（预留，抵达时时间）"
        },
        {
          "key": "",
          "field": "ArriveOverDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "送达时间",
          "description": "送达时间，司机送达签收时触发"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注，用于填写情况说明"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "DeliveryTaskOrder",
      "sheet": "CWMInv",
      "title": "配送任务子表-单据号",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "DeliveryTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "配送任务表系统编号",
          "description": "配送任务表系统编号"
        },
        {
          "key": "",
          "field": "DeliveryTaskDestSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "配送目的地明细编号",
          "description": "配送目的地明细编号"
        },
        {
          "key": "",
          "field": "OrderPTID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "平台的单据ID",
          "description": "平台的单据ID,平台生成的唯一ID"
        },
        {
          "key": "",
          "field": "OptSource",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "'自动分配'",
          "remark": "",
          "need_index": "",
          "title": "单据加入的方式",
          "description": "单据加入的方式，默认值自动分配，可以人工分配"
        },
        {
          "key": "",
          "field": "TaskOrderStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=待装车, \n50=OnDelivery=已装车完成,\n100=Completed=配送完成,\n-1=Void=已作废,\n-50=Intercepted=已拦截",
          "need_index": "",
          "title": "配送单据状态",
          "description": "配送单据状态：初始态-任务创建时默认，已装车核验-司机装车好一个单据需要确认一个单据已装车，配送完成-司机送达签收时触发"
        },
        {
          "key": "",
          "field": "OrderNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "配送点先后顺序",
          "description": "配送点先后顺序, 越小越先送，从1开始"
        },
        {
          "key": "",
          "field": "LoadingDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "装车时间",
          "description": "装车时间"
        },
        {
          "key": "",
          "field": "ArriveDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "送达时间",
          "description": "送达时间，司机送达签收的时间"
        },
        {
          "key": "",
          "field": "Longitude",
          "type": "DECIMAL(10,6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "经度",
          "description": "签收时经度，小数点后不超过6位"
        },
        {
          "key": "",
          "field": "Latitude",
          "type": "DECIMAL(10,6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "纬度",
          "description": "签收时纬度，小数点后不超过6位"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "StevedoringRecord",
      "sheet": "CWMInv",
      "title": "装卸货记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "客户公司编号",
          "description": "客户公司编号"
        },
        {
          "key": "",
          "field": "Numberplate",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "车牌",
          "description": "车牌"
        },
        {
          "key": "",
          "field": "StevedoringType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Load=装货, \n2=UnLoad=卸货",
          "need_index": "",
          "title": "装卸类型",
          "description": "装卸类型"
        },
        {
          "key": "",
          "field": "CBMQty",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "装卸方数",
          "description": "装卸方数"
        },
        {
          "key": "",
          "field": "WeightQty",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "装卸吨数",
          "description": "装卸货吨数"
        },
        {
          "key": "",
          "field": "UnloadingStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=初始态, \n100=Completed=登记完成,\n-1=Void=已作废",
          "need_index": "",
          "title": "登记状态",
          "description": "登记状态，创建时为初始态，上传图片后更新为完成，完成后只能修改图片，入库单也不可再修改"
        },
        {
          "key": "",
          "field": "PictureUrl",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "图片地址",
          "description": "图片地址"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "StevedoringRecordDetail",
      "sheet": "CWMInv",
      "title": "装卸货记录子表-PO单号",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "StevedoringRecordSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "卸货登记系统编号",
          "description": "卸货登记系统编号"
        },
        {
          "key": "",
          "field": "OrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "单据编号",
          "description": "单据编号"
        }
      ]
    },
    {
      "name": "CellInvMoveTask",
      "sheet": "CWMInv",
      "title": "搬仓移动任务，主要用于同一个仓库搬仓的库位库存数据迁移",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "OriginStorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣,\n1=Box=料箱,\n2=Pallet=托盘,\n3=GroundHeap=地堆",
          "need_index": "Y",
          "title": "源库位类型",
          "description": "源库位类型"
        },
        {
          "key": "",
          "field": "OriginStorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "源库区ID",
          "description": "源库区ID"
        },
        {
          "key": "",
          "field": "OriginCellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "源库位",
          "description": "源库位"
        },
        {
          "key": "",
          "field": "PackingCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "载体条码",
          "description": "载体条码，或者是移库时承载的载体条码"
        },
        {
          "key": "",
          "field": "InvMoveTaskStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始状态,\n20=TaskLaunch=下发任务, \n30=OnPicking=拣货中,\n50=Picked=完成拣货,\n100=Completed=移库完成",
          "need_index": "Y",
          "title": "移库状态",
          "description": "移库状态,只需要50和100"
        },
        {
          "key": "",
          "field": "TargetCellID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "目标库位",
          "description": "目标库位"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "PickUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货人",
          "description": "拣货人"
        },
        {
          "key": "",
          "field": "PickUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货人名",
          "description": "拣货人名"
        },
        {
          "key": "",
          "field": "PickCompleteDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "完成拣货时间",
          "description": "完成拣货时间"
        },
        {
          "key": "",
          "field": "UpperUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架人",
          "description": "上架人"
        },
        {
          "key": "",
          "field": "UpperUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架人名",
          "description": "上架人名"
        },
        {
          "key": "",
          "field": "UpperCompleteDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架完成时间",
          "description": "上架完成时间"
        }
      ]
    },
    {
      "name": "CellInvMoveTaskDetail",
      "sheet": "CWMInv",
      "title": "搬仓移动任务明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CIMTSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "任务编号",
          "description": "任务编号"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库位ID",
          "description": "库位ID:XX-XXX-XX-XXX-X,也等于Cell的BarCode,(XX库区XXX排XX层XXX格-X)"
        },
        {
          "key": "",
          "field": "StorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ManuPicking=零拣,\n1=Box=料箱,\n2=Pallet=托盘,\n3=GroundHeap=地堆",
          "need_index": "Y",
          "title": "库位类型",
          "description": "库位类型，零拣库和地堆库均为混合存放模式，料箱库为按商品一库一箱存放模式，立体库位按商品一库一托存放模式。"
        },
        {
          "key": "",
          "field": "StorageZoneId",
          "type": "VARCHAR(2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库区ID",
          "description": "库区ID"
        },
        {
          "key": "",
          "field": "AutoFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Manu=人工库区,\n1=Auto=自动化库区,\n2=Robot=机器人库区",
          "need_index": "Y",
          "title": "库区形式",
          "description": "库区形式"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "良残标识（冗余)"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品系统编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "批号",
          "description": "批号"
        },
        {
          "key": "",
          "field": "ProduceDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "生产日期"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "RecDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货日期",
          "description": "收货日期，用于没有效期的商品，基于收货日期先进先出"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量，没有箱规则为0，没有设置箱规的商品不能入托盘库"
        },
        {
          "key": "",
          "field": "StockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "库位数量",
          "description": "库位实际数量，捡完货立即扣减"
        },
        {
          "key": "",
          "field": "AvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "可用库存",
          "description": "可用数量，创建完任务立即扣减"
        },
        {
          "key": "",
          "field": "TransferOccupyQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "货权转移占用数量",
          "description": "货权转移占用数量"
        },
        {
          "key": "",
          "field": "CheckLockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "锁定数量",
          "description": "盘点锁定数量，缺货时增加锁定数量扣减可用数量"
        },
        {
          "key": "",
          "field": "ProductInvCellStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Common=正常,\n2=Occupy=作业占用,\n21=Exception=异常冻结",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "CellLockFlag",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "0=Normal=正常, \n1=Locked=常规锁定,\n21=ExceptLock=异常锁定",
          "need_index": "Y",
          "title": "锁定标识",
          "description": "锁定标识"
        },
        {
          "key": "",
          "field": "BizDicSysNoes",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务字典编号",
          "description": "业务字典编号，多个逗号分割，主要用于处理退货登记次品"
        },
        {
          "key": "",
          "field": "BoxCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "箱码",
          "description": "箱码，料箱库时箱码"
        },
        {
          "key": "",
          "field": "BoxQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱数",
          "description": "箱数，料箱库时为1，如果是托盘，则是托盘上箱数"
        },
        {
          "key": "",
          "field": "PalletCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "托盘码",
          "description": "托盘码，托盘库时托盘"
        },
        {
          "key": "",
          "field": "SameStructureKey",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "套组同构key",
          "description": "套组同构key"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "CellScatteredClearUp",
      "sheet": "CWMInv",
      "title": "库位散件理货任务",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ClearUpStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=ClearUpIng=理货中,\n10=ClearUped=理货完成,\n50=OnUppering=上架中,\n100=Complete=上架完成",
          "need_index": "Y",
          "title": "理货状态",
          "description": "理货状态"
        },
        {
          "key": "",
          "field": "ClearUpCars",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "分拣车",
          "description": "分拣车：4_6,4_6"
        },
        {
          "key": "",
          "field": "CellIDs",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "理货库位",
          "description": "理货库位"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "Y",
          "title": "良残标识",
          "description": "良残标识"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "CellScatteredBox",
      "sheet": "CWMInv",
      "title": "库位散件理货载体",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CellScatteredSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "理货任务编号",
          "description": "理货任务编号"
        },
        {
          "key": "",
          "field": "ClearUpCarIndex",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "分拣车序号",
          "description": "分拣车序号，从1开始"
        },
        {
          "key": "",
          "field": "BoxCode",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "载体条码",
          "description": "载体条码"
        },
        {
          "key": "",
          "field": "BoxCellNo",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "载体格口号",
          "description": "载体格口号：A1"
        },
        {
          "key": "",
          "field": "ClearUpStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=ClearUpIng=理货中,\n10=ClearUped=理货完成,\n50=OnUppering=上架中,\n100=Complete=上架完成",
          "need_index": "Y",
          "title": "理货状态",
          "description": "理货状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "CellScatteredProduct",
      "sheet": "CWMInv",
      "title": "库位散件理货商品",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CellScatteredSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "理货任务编号",
          "description": "理货任务编号"
        },
        {
          "key": "",
          "field": "CellScatteredBoxSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "理货载体系统编码",
          "description": "理货载体系统编码"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库位条码",
          "description": "库位条码"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品系统编码",
          "description": "商品系统编码"
        },
        {
          "key": "",
          "field": "ProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品数量",
          "description": "商品数量"
        },
        {
          "key": "",
          "field": "UpperQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架数量",
          "description": "上架数量"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "MessageCenter",
      "sheet": "CWMLog",
      "title": "信息（通知、异常）中心",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "BizSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务编号",
          "description": "业务编号"
        },
        {
          "key": "",
          "field": "MessageBizType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Product=商品,\n1=PO=入库单,\n2=SO=订单,\n3=BO=BO单,\n4=RM=退货单",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "MsgType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Message=通知,\n1=Alert=预警,\n9=Exception=异常",
          "need_index": "Y",
          "title": "消息类型",
          "description": "消息类型"
        },
        {
          "key": "",
          "field": "BizCode",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "业务Code",
          "description": "业务Code,如SOID\\BOID"
        },
        {
          "key": "",
          "field": "BizRefCode",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "业务相关Code.somaster.sorelcode",
          "need_index": "",
          "title": "业务相关Code",
          "description": "业务相关Code.somaster.sorelcode"
        },
        {
          "key": "",
          "field": "MsgTitle",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "消息标题",
          "description": "消息标题"
        },
        {
          "key": "",
          "field": "MsgContent",
          "type": "text",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "消息内容",
          "description": "消息内容"
        },
        {
          "key": "",
          "field": "MsgDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "消息时间",
          "description": "消息时间"
        },
        {
          "key": "",
          "field": "MsgUrl",
          "type": "VARCHAR(80)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Url",
          "description": "Url"
        },
        {
          "key": "",
          "field": "IsNew",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "是否新",
          "description": "是否新，创建时是1，点击查看详细后变为0"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ReceiveLog",
      "sheet": "CWMLog",
      "title": "收货日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ReceiveAction",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "101=IS_RecCreate=收货任务创建,\n102=IS_RecCheck=收货清点,\n103=IS_RecSetUpper=收货上架设置,\n105=IS_RecUpperOnline=收货上架",
          "need_index": "Y",
          "title": "业务任务作业",
          "description": "业务任务作业"
        },
        {
          "key": "",
          "field": "ActionDesc",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "操作说明",
          "description": "操作说明"
        },
        {
          "key": "",
          "field": "ActionStartDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "作业开始时间",
          "description": "作业开始时间"
        },
        {
          "key": "",
          "field": "ActionEndDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "作业结束时间",
          "description": "作业结束时间"
        },
        {
          "key": "",
          "field": "ActionUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "ActionUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "PO编号",
          "description": "PO编号"
        },
        {
          "key": "",
          "field": "ReceiveSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "收货编号",
          "description": "收货编号"
        },
        {
          "key": "",
          "field": "WBSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工作台编号",
          "description": "工作台编号"
        }
      ]
    },
    {
      "name": "OutStockLog",
      "sheet": "CWMLog",
      "title": "出库日志，按照每个单据来写入",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "OutStockAction",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "201=OS_WaveCreate=出库波次创建,\n202=OS_WaveTaskIssue=波次任务下发, \n205=OS_Pick=拣货任务作业,\n206=OS_MISOSencondPick=多品播种作业, \n208=OS_Packaged=复核打包作业, \n210=OS_Completed=完成出库",
          "need_index": "Y",
          "title": "任务作业",
          "description": "任务作业"
        },
        {
          "key": "",
          "field": "ActionDesc",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "操作说明",
          "description": "操作说明"
        },
        {
          "key": "",
          "field": "ActionStartDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "作业开始时间",
          "description": "作业开始时间"
        },
        {
          "key": "",
          "field": "ActionEndDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "作业结束时间",
          "description": "作业结束时间"
        },
        {
          "key": "",
          "field": "ActionUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "ActionUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "WaveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "波次编号",
          "description": "波次编号；"
        },
        {
          "key": "",
          "field": "PickTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拣货任务编号",
          "description": "拣货任务编号"
        },
        {
          "key": "",
          "field": "OrderType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=SO=SO订单,\n2=BO=BO批量单",
          "need_index": "Y",
          "title": "单据类型",
          "description": "单据类型"
        },
        {
          "key": "",
          "field": "OrderSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号"
        },
        {
          "key": "",
          "field": "WBSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工作台编号",
          "description": "工作台编号"
        }
      ]
    },
    {
      "name": "PIDateSnapshot",
      "sheet": "CWMLog",
      "title": "每日库存快照日志，每天凌晨2点执行，Run前一天的数据，然后删除100天前的数据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "快照日期",
          "description": "快照日期"
        },
        {
          "key": "",
          "field": "StockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "在仓数量",
          "description": "正品在仓数量"
        },
        {
          "key": "",
          "field": "AvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "可用库存",
          "description": "正品可用数量"
        },
        {
          "key": "",
          "field": "ImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "次品数量",
          "description": "次品数量"
        },
        {
          "key": "",
          "field": "WasteQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "废品数量",
          "description": "废品数量"
        },
        {
          "key": "",
          "field": "OrderOccupyQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单占用数量",
          "description": "订单占用数量：订单入仓时被占用的数量，订单出库时释放"
        },
        {
          "key": "",
          "field": "OtherOccupyQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "其它占用数量",
          "description": "其它占用数量：特殊处理被占用的数量，是需要处理的数量"
        },
        {
          "key": "",
          "field": "PickedOnlyQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "已拣货未出库的数量",
          "description": "已拣货未出库的数量"
        }
      ]
    },
    {
      "name": "PICDateSnapshot",
      "sheet": "CWMLog",
      "title": "每日库位库存快照日志，每天凌晨2点执行，Run前一天的数据，然后删除100天前的数据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "快照日期",
          "description": "快照日期"
        },
        {
          "key": "",
          "field": "CellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "库位ID",
          "description": "库位ID:XX-XXX-XX-XXX-X,也等于Cell的BarCode,(XX库区XXX排XX层XXX格-X)"
        },
        {
          "key": "",
          "field": "StorageType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "库位类型",
          "description": "库位类型"
        },
        {
          "key": "",
          "field": "CellFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=正常库位, \n2=Imperfect=次品库位,\n3=Waste=废品库位",
          "need_index": "",
          "title": "库位标识",
          "description": "库位标识（冗余)"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号"
        },
        {
          "key": "",
          "field": "ExpireDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "效期",
          "description": "有效截止日期，收货时如果没填效期或者不需要效期，则为null"
        },
        {
          "key": "",
          "field": "RecDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货日期",
          "description": "收货日期，用于没有效期的商品，基于收货日期先进先出"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量，没有箱规则为0，没有设置箱规的商品不能入托盘库"
        },
        {
          "key": "",
          "field": "StockQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "库位数量",
          "description": "库位实际数量，捡完货立即扣减"
        },
        {
          "key": "",
          "field": "AvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "可用库存",
          "description": "可用数量，创建完任务立即扣减"
        }
      ]
    },
    {
      "name": "gk_io_order",
      "sheet": "CWMLog",
      "title": "极智嘉Geek+的出入业务单据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号，Geek+是按照商户进行管理"
        },
        {
          "key": "",
          "field": "GIOCode",
          "type": "VARCHAR(32)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "对接交互编码",
          "description": "对接交互编码: GIOType-RefTaskSysNo-SysNo"
        },
        {
          "key": "",
          "field": "GIOType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "101=IS_PO_Issue=收货入库下发,\n102=IS_POCancel=收货入库取消,\n111=IS_Repl_Issue=补货入库下发,\n112=IS_Repl_Cancel=补货入库取消,\n201=OS_SO_Issue=订单出库下发,\n211=OS_Repl_Issue=补货出库下发,\n221=OS_BO_Issue=批量出库下发,",
          "need_index": "Y",
          "title": "业务类型",
          "description": "业务类型"
        },
        {
          "key": "",
          "field": "GIOName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "业务名称",
          "description": "业务名称"
        },
        {
          "key": "",
          "field": "GIODesc",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务说明",
          "description": "业务说明或业务数据说明，比如库存批属性"
        },
        {
          "key": "",
          "field": "RefTaskSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "任务编号",
          "description": "任务编号"
        },
        {
          "key": "",
          "field": "RefOrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "相关单据编号",
          "description": "相关单据单号，比如PO编号，SO编号,BO编号"
        },
        {
          "key": "",
          "field": "RefWaveSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "相关波次编号",
          "description": "相关波次编号，出库的波次编号"
        },
        {
          "key": "",
          "field": "GIOPushStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=WaitPush=待推送,\n-1=PushFailure=推送失败,\n100=PushSuccess=推送成功,\n-99=SystemException=系统异常,\n-100=NoNeedPush=不需推送",
          "need_index": "Y",
          "title": "推送状态",
          "description": "推送状态，-1相当于Geek+返回的调用失败"
        },
        {
          "key": "",
          "field": "PushPackingCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "推送时载体码",
          "description": "推送时载体码"
        },
        {
          "key": "",
          "field": "PushReqBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推送报文",
          "description": "推送报文(FlyTo云仓推送给Geek+)"
        },
        {
          "key": "",
          "field": "PushRespBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推送返回报文",
          "description": "推送返回报文(FlyTo云仓推送给Geek+，Geek+同步处理的返回)"
        },
        {
          "key": "",
          "field": "PushExceptBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推送异常信息",
          "description": "推送异常信息(FlyTo云仓推送给Geek+时发生的异常信息)"
        },
        {
          "key": "",
          "field": "PushDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推送时间",
          "description": "推送时间"
        },
        {
          "key": "",
          "field": "PushCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "推送次数",
          "description": "推送次数"
        },
        {
          "key": "",
          "field": "GIOCallbackStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=WaitCallback=待反馈,\n-1=CallbackFailure=反馈处理失败,\n100=CallbackSuccess=反馈处理成功,\n-100=NoNeedCallback=不需反馈",
          "need_index": "Y",
          "title": "反馈状态",
          "description": "反馈及反馈处理状态"
        },
        {
          "key": "",
          "field": "CallbackPackingCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "推送时载体码",
          "description": "推送时载体码"
        },
        {
          "key": "",
          "field": "CallbackReqBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回调报文",
          "description": "回调报文(Geek+推送给FlyTo云仓)"
        },
        {
          "key": "",
          "field": "CallbackRespBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回调返回报文",
          "description": "回调返回报文(Geek+推送给FlyTo云仓,云仓同步处理的返回)"
        },
        {
          "key": "",
          "field": "CallbackExceptBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回调异常信息",
          "description": "回调异常信息(FlyTo云仓处理时发生的异常信息)"
        },
        {
          "key": "",
          "field": "CallbackDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "反馈时间",
          "description": "反馈时间"
        },
        {
          "key": "",
          "field": "CallbackCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "反馈次数",
          "description": "反馈次数"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "gk_io_otherlog",
      "sheet": "CWMLog",
      "title": "极智嘉Geek+的出入其它job类日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号，Geek+是按照商户进行管理"
        },
        {
          "key": "",
          "field": "GIOCode",
          "type": "VARCHAR(32)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "对接交互编码",
          "description": "对接交互编码: GIOType-SysNo"
        },
        {
          "key": "",
          "field": "GIOOtherType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "10=SKU_Issue=商品推送,\n303=SP_GAO_Callback=Geek内部盘点反馈,\n331=SP_PROD_Property=库存批属性调整下发,\n401=SP_INV_SNAP=库存镜像对账",
          "need_index": "Y",
          "title": "业务类型",
          "description": "业务类型"
        },
        {
          "key": "",
          "field": "GIOName",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "业务名称",
          "description": "业务名称"
        },
        {
          "key": "",
          "field": "GIODesc",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务说明",
          "description": "业务说明或业务数据说明，比如库存批属性"
        },
        {
          "key": "",
          "field": "GIORefBizData",
          "type": "VARCHAR(TEXT)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务相关数据",
          "description": "业务相关数据，比如商品推送的商品编号多个逗号分隔；批量库存属性调整下发，涉及哪些商品"
        },
        {
          "key": "",
          "field": "GIOPushStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=WaitPush=待推送,\n-1=PushFailure=推送失败,\n100=PushSuccess=推送成功,\n-100=NoNeedPush=不需推送",
          "need_index": "Y",
          "title": "推送状态",
          "description": "推送状态"
        },
        {
          "key": "",
          "field": "PushPackingCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "推送时载体码",
          "description": "推送时载体码"
        },
        {
          "key": "",
          "field": "PushReqBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推送报文",
          "description": "推送报文(FlyTo云仓推送给Geek+)"
        },
        {
          "key": "",
          "field": "PushRespBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推送返回报文",
          "description": "推送返回报文(FlyTo云仓推送给Geek+，Geek+同步处理的返回)"
        },
        {
          "key": "",
          "field": "PushExceptBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推送异常信息",
          "description": "推送异常信息(FlyTo云仓推送给Geek+时发生的异常信息)"
        },
        {
          "key": "",
          "field": "PushDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推送时间",
          "description": "推送时间"
        },
        {
          "key": "",
          "field": "PushCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "推送次数",
          "description": "推送次数"
        },
        {
          "key": "",
          "field": "GIOCallbackStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=WaitCallback=待反馈,\n-1=CallbackFailure=反馈处理失败,\n100=CallbackSuccess=反馈处理成功,\n-100=NoNeedCallback=不需反馈",
          "need_index": "Y",
          "title": "反馈状态",
          "description": "反馈及反馈处理状态"
        },
        {
          "key": "",
          "field": "CallbackPackingCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "推送时载体码",
          "description": "推送时载体码"
        },
        {
          "key": "",
          "field": "CallbackReqBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回调报文",
          "description": "回调报文(Geek+推送给FlyTo云仓)"
        },
        {
          "key": "",
          "field": "CallbackRespBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回调返回报文",
          "description": "回调返回报文(Geek+推送给FlyTo云仓,云仓同步处理的返回)"
        },
        {
          "key": "",
          "field": "CallbackExceptBody",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "回调异常信息",
          "description": "回调异常信息(FlyTo云仓处理时发生的异常信息)"
        },
        {
          "key": "",
          "field": "CallbackDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "反馈时间",
          "description": "反馈时间"
        },
        {
          "key": "",
          "field": "CallbackCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "反馈次数",
          "description": "反馈次数"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WaybillPrintlog",
      "sheet": "CWMLog",
      "title": "运单打印日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WaybillPrintType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=PrintByWave=打印波次订单,\n2=PrintByWaveSO=打印波次指定订单,\n3=PrintByWaveSOPackage=打印波次指定订单所有运单,\n4=PrintWaybill=打印指定运单,\n5=PrintByPickTask=打印拣货任务订单,\n6=PrintByPickTaskSO=打印拣货任务指定订单,\n7=PrintBO=打印BO单主包裹,\n8=PrintByPackage=打印指定订单指定运单,\n9=PrintBOByPackage=打印BO单指定运单,\n10=PrintSSWavePackage=打印同构波次指定包裹,",
          "need_index": "Y",
          "title": "打印类型",
          "description": "打印类型"
        },
        {
          "key": "",
          "field": "WaveSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "波次号",
          "description": "波次号"
        },
        {
          "key": "",
          "field": "PickTaskSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拣货任务",
          "description": "拣货任务"
        },
        {
          "key": "",
          "field": "OrderSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "单据号",
          "description": "单据号（订单、BO单SysNo）"
        },
        {
          "key": "",
          "field": "PackageIndex",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹序号",
          "description": "包裹序号"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "PrintGroup",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "打印组",
          "description": "打印组，一次打印生成的GUID"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ProductUpdateLog",
      "sheet": "CWMLog",
      "title": "商品采样信息修改日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "UpdateInfo",
          "type": "text",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改信息",
          "description": "修改信息"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorInfoUpdatelog",
      "sheet": "CWMLog",
      "title": "商户相关信息修改日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "VendorUpdateType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=WorkTactics=作业策略,\n2=TMSCfg=TMS配置信息,",
          "need_index": "Y",
          "title": "修改类型",
          "description": "修改类型"
        },
        {
          "key": "",
          "field": "UpdateInfo",
          "type": "text",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改信息",
          "description": "修改信息"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "MethodUseLog",
      "sheet": "CWMLog",
      "title": "系统功能使用日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "Control",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Control",
          "description": "Control"
        },
        {
          "key": "",
          "field": "Method",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "方法",
          "description": "方法"
        },
        {
          "key": "",
          "field": "RequestParam",
          "type": "text",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "请求参数",
          "description": "请求参数"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ProductBoxDailyLog",
      "sheet": "CWMLog",
      "title": "每日商品原箱纸箱产生数量日志（带外纸箱重量和箱规的商品）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "快照日期",
          "description": "快照日期"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "CartonPackingQty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "箱规数量",
          "description": "箱规数量"
        },
        {
          "key": "",
          "field": "BoxCartonWeight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "外纸箱重量",
          "description": "外纸箱重量，单位克"
        },
        {
          "key": "",
          "field": "SOItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单发货量",
          "description": "订单发货数量"
        },
        {
          "key": "",
          "field": "BOItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "加工BO发货量",
          "description": "加工BO发货量"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ShipHourLog",
      "sheet": "CWMLog",
      "title": "各快递在各省的运输时长，从揽收开始到送达,基础数据表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "LogMonth",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "月份",
          "description": "月份"
        },
        {
          "key": "",
          "field": "OriginProvince",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "发货省名",
          "description": "发货省名"
        },
        {
          "key": "",
          "field": "OriginCity",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发货城市",
          "description": "发货城市"
        },
        {
          "key": "",
          "field": "TargetProvince",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收货省名",
          "description": "收货省名"
        },
        {
          "key": "",
          "field": "TargetCity",
          "type": "NVARCHAR(20)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "收货城市",
          "description": "收货城市"
        },
        {
          "key": "",
          "field": "PackageCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹数量",
          "description": "包裹数量"
        },
        {
          "key": "",
          "field": "ShipHour",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "物流时长",
          "description": "物流时长"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "TeamSOLog",
      "sheet": "CWMLog",
      "title": "业务组的订单数据；维度条件：每天，每个Team，每种温区类型，每种作业模式的订单——总单数，总包裹数，平均件数，平均行数",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "日志日期",
          "description": "日志日期"
        },
        {
          "key": "",
          "field": "TeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组编号",
          "description": "业务组编号"
        },
        {
          "key": "",
          "field": "TeamName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务组名",
          "description": "业务组名"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "WaveOptType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SOStandard=SO标准作业模式,\n1=SOSameStructureBatch=SO同构批量模式,\n4=SOOneTaskPreOrder=摘果式作业,\n11=BOOutStock=BO批量出库单模式",
          "need_index": "",
          "title": "波次作业模式",
          "description": "波次作业模式"
        },
        {
          "key": "",
          "field": "AvgSOItemRowCount",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "平均行数",
          "description": "平均行数"
        },
        {
          "key": "",
          "field": "AvgSOItemQty",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "平均件数",
          "description": "平均件数"
        },
        {
          "key": "",
          "field": "SOCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单数",
          "description": "订单数"
        },
        {
          "key": "",
          "field": "PackageCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹数",
          "description": "包裹数"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "TeamVendorSOLog",
      "sheet": "CWMLog",
      "title": "业务组内商户的订单数据，维度条件：每天，每个Team，每个商户，每种温区类型，每种作业模式的订单——总单数，总包裹数，平均件数，平均行数",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "日志日期",
          "description": "日志日期"
        },
        {
          "key": "",
          "field": "TeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组编号",
          "description": "业务组编号"
        },
        {
          "key": "",
          "field": "TeamName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务组名",
          "description": "业务组名"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "WaveOptType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=SOStandard=SO标准作业模式,\n1=SOSameStructureBatch=SO同构批量模式,\n4=SOOneTaskPreOrder=摘果式作业,\n11=BOOutStock=BO批量出库单模式",
          "need_index": "",
          "title": "波次作业模式",
          "description": "波次作业模式"
        },
        {
          "key": "",
          "field": "AvgSOItemRowCount",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "平均行数",
          "description": "平均行数"
        },
        {
          "key": "",
          "field": "AvgSOItemQty",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "平均件数",
          "description": "平均件数"
        },
        {
          "key": "",
          "field": "SOCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单数",
          "description": "订单数"
        },
        {
          "key": "",
          "field": "PackageCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹数",
          "description": "包裹数"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "PackOrder",
      "sheet": "CWMLog",
      "title": "装箱单据表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单SysNo",
          "description": "订单SysNo"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "BO编号",
          "description": "BO编号"
        },
        {
          "key": "",
          "field": "GroupID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "合并组",
          "description": "合并组"
        },
        {
          "key": "",
          "field": "PackStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init =未完成，\n100 = Complete = 已完成,\n-1 = Void =已作废",
          "need_index": "Y",
          "title": "状态",
          "description": "状态 0 未完成  100已完成 ,-1已作废"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PackBox",
      "sheet": "CWMLog",
      "title": "装箱箱",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "GroupID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "合并组",
          "description": "合并组"
        },
        {
          "key": "",
          "field": "BoxIndex",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "序号",
          "description": "序号"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "'",
          "remark": "",
          "need_index": "",
          "title": "包装箱ID",
          "description": "包装箱ID"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "PackBoxItem",
      "sheet": "CWMLog",
      "title": "装箱商品",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "GroupID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "合并组",
          "description": "合并组"
        },
        {
          "key": "",
          "field": "BoxSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商品",
          "description": "商品"
        },
        {
          "key": "",
          "field": "Qty",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        }
      ]
    },
    {
      "name": "PCMUsingDataCalcLog",
      "sheet": "CWMLog",
      "title": "包耗材使用理论数据计算记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RunComplete",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "是否运行完成",
          "description": "是否运行完成"
        },
        {
          "key": "",
          "field": "RunStartTime",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运行开始时间",
          "description": "运行开始时间"
        },
        {
          "key": "",
          "field": "RunEndTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运行结束时间",
          "description": "运行结束时间"
        },
        {
          "key": "",
          "field": "RunSuccess",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运行是否成功",
          "description": "运行是否成功"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "QueryDownloadLog",
      "sheet": "CWMLog",
      "title": "分页查询的动态异步下载日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "FileBizCategory",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务类型",
          "description": "业务类型，文本归类"
        },
        {
          "key": "",
          "field": "FilePath",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "文件路径",
          "description": "文件全路径"
        },
        {
          "key": "",
          "field": "FileStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "50=OnBuilding=文件生成中, \n100=Completed=文件生成成功,\n-100=Exception=文件生成异常",
          "need_index": "Y",
          "title": "文件状态",
          "description": "文件状态"
        },
        {
          "key": "",
          "field": "BuildMsg",
          "type": "VARCHAR(400)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "文件生成说明",
          "description": "文件生成说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "创建人编号",
          "description": "文件创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "文件创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "文件创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后更新时间",
          "description": "最后更新时间"
        }
      ]
    },
    {
      "name": "SOExtendLog",
      "sheet": "CWMLog",
      "title": "订单扩展日志，包含异常（停发等获取运单异常、回传失败等）、手动操作（切换快递、修改收件信息、提前回传），不包含正常作业",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号"
        },
        {
          "key": "",
          "field": "SOExtendLogType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始测试\n10=WaybillErr=获取运单异常, \n15=ConfirmErr=回传异常,\n20=SendShipLock=发送物流停发给客户,\n25=SendConfirmErr=发送回传失败给客户,\n50=ManuChangeShip=手动切换快递,\n55=ManuEditReceive=手动修改收件信息,\n56=ManuGetWaybill=手动获取运单号, \n58=ManuConfirm=手动回传",
          "need_index": "Y",
          "title": "扩展日志类型",
          "description": "扩展日志类型"
        },
        {
          "key": "",
          "field": "LogInfo",
          "type": "VARCHAR(400)",
          "required": "",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "日志信息",
          "description": "日志信息"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "创建人编号",
          "description": "文件创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "文件创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "文件创建时间"
        }
      ]
    },
    {
      "name": "WCSOutStockMid",
      "sheet": "CWMLog",
      "title": "WCS出库，传给WMS的中间数据表，WMS处理完后需要清理掉",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "DeviceID",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "设备ID",
          "description": "设备ID"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "Weight",
          "type": "DECIMAL(18, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "包裹重量(g)",
          "description": "包裹重量(g)"
        },
        {
          "key": "",
          "field": "Length",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹长(cm)",
          "description": "包裹长(cm)"
        },
        {
          "key": "",
          "field": "Width",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹宽(cm)",
          "description": "包裹宽(cm)"
        },
        {
          "key": "",
          "field": "Height",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹高(cm)",
          "description": "包裹高(cm)"
        },
        {
          "key": "",
          "field": "StateFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "状态标识",
          "description": "状态标识，0=初始，100=正常分配完毕，-100=分配异常口"
        },
        {
          "key": "",
          "field": "OutStockFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "是否执行已出库",
          "description": "是否执行已出库，0=未出库，100=已执行出库，-2=无需执行"
        },
        {
          "key": "",
          "field": "PortID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "道口ID",
          "description": "需要发货的道口ID"
        },
        {
          "key": "",
          "field": "SlotType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "道口类型",
          "description": "道口类型，默认0=正常口，1=WMS业务异常口，2=WCS系统异常口"
        },
        {
          "key": "",
          "field": "ExceptMsg",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "异常信息",
          "description": "异常信息"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "RunCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运行次数",
          "description": "运行次数"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "文件创建时间"
        }
      ]
    },
    {
      "name": "WCSSplitPortItem",
      "sheet": "CWMLog",
      "title": "WCS配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "DeviceID",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "设备ID",
          "description": "设备ID"
        },
        {
          "key": "",
          "field": "PortNum",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "顺序号",
          "description": "顺序号"
        },
        {
          "key": "",
          "field": "PortID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "道口ID",
          "description": "道口ID"
        },
        {
          "key": "",
          "field": "SlotType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "道口类型",
          "description": "道口类型，默认0=正常口，1=WMS业务异常口，2=WCS系统异常口"
        },
        {
          "key": "",
          "field": "OptionValues",
          "type": "VARCHAR(300)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "选项值，多个用逗号分隔",
          "description": "选项值，多个用逗号分隔"
        },
        {
          "key": "",
          "field": "WeightStart",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量开始(G)",
          "description": "重量开始(G)"
        },
        {
          "key": "",
          "field": "WeightEnd",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量截止",
          "description": "重量截止"
        },
        {
          "key": "",
          "field": "VolumeStart",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "体积开始(立方厘米)",
          "description": "体积开始(立方厘米)"
        },
        {
          "key": "",
          "field": "VolumeEnd",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "体积截止",
          "description": "体积截止"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "文件创建时间"
        }
      ]
    },
    {
      "name": "SOPCMProductLog",
      "sheet": "CWMLog",
      "title": "订单包材对应商品出库记录，回传时根据包材ID扣减对应商品的库存记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货主编号",
          "description": "货主编号"
        },
        {
          "key": "",
          "field": "PCMProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包材商品",
          "description": "包材商品"
        },
        {
          "key": "",
          "field": "BarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "回传包材条码",
          "description": "回传包材条码"
        },
        {
          "key": "",
          "field": "Qty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "CutFlag",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包材扣减标记",
          "description": "包材扣减标记 ,0未扣减,1已扣减，2补充扣减"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RMTempStorageLog",
      "sheet": "CWMLog",
      "title": "销退暂存区情况记录日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "快照日期",
          "description": "快照日期"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货主编号",
          "description": "货主编号"
        },
        {
          "key": "",
          "field": "RegisterPkgCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "登记包裹数",
          "description": "登记包裹数"
        },
        {
          "key": "",
          "field": "SigninPkgCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "签收包裹数",
          "description": "签收包裹数"
        },
        {
          "key": "",
          "field": "TempStoragePkgCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "暂存区包裹数",
          "description": "暂存区包裹数"
        },
        {
          "key": "",
          "field": "TempStorageProdQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "暂存区商品数量",
          "description": "暂存区商品数量"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RecommendUpperCellLog",
      "sheet": "CWMLog",
      "title": "推荐上架库位日志",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(10001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "LogType",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Recommend=推荐,\n1=Upper=上架",
          "need_index": "Y",
          "title": "日志类型",
          "description": "日志类型 0推荐、1上架"
        },
        {
          "key": "",
          "field": "ProductSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品编号",
          "description": "商品编号"
        },
        {
          "key": "",
          "field": "BatchNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "批号",
          "description": "批号"
        },
        {
          "key": "",
          "field": "ProductQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "RecommendUpperType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Init=未指定,\n1=Inspect=拦截回库,\n2=BatchInspect=批量拦截回库, \n3=BOInspectMove=BO拦截回库, \n10=ReplMove=两步补货,\n11=OptimizeMove=一步自由移库,\n13=ReplClearPIC=两步理货,\n14=CellFlagChange=良残转换,\n15=SPOrderMove=发货预处理移库,\n16=OneStepTaskMove=一步任务移库,\n18=ComboMove=套组移库,\n20=POStdReceive=标准PO收货,\n22=POQuickReceive=快速PO收货,\n25=POScatteredReceive=散件收货,\n26=POCheckReceive=清点收货",
          "need_index": "",
          "title": "推荐或上架类型",
          "description": "推荐或上架类型"
        },
        {
          "key": "",
          "field": "RecommendCellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "推荐库位ID",
          "description": "推荐库位ID"
        },
        {
          "key": "",
          "field": "UpperCellID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "上架库位ID",
          "description": "上架库位ID,日志为上架时才有"
        },
        {
          "key": "",
          "field": "RecommendCellInfo",
          "type": "VARCHAR(2000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推荐库位信息",
          "description": "推荐库位信息，库存的商品、名称、长宽高、数量的JSON。"
        },
        {
          "key": "",
          "field": "UpperCellInfo",
          "type": "VARCHAR(2000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上架库位信息",
          "description": "上架库位信息，库存的商品、名称、长宽高、数量的JSON。,日志为上架时才有"
        },
        {
          "key": "",
          "field": "RecommendReqInfo",
          "type": "VARCHAR(2000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "推荐请求信息",
          "description": "推荐请求信息,日志为推荐时才有"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "创建人编号",
          "description": "文件创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "文件创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "SOShipRoute",
      "sheet": "CWMTMS",
      "title": "订单基础信息及路由信息，揽收后数据才会写入本表",
      "fields": [
        {
          "key": "PK",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOPackageSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包裹SysNo",
          "description": "包裹SysNo"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单ID",
          "description": "订单ID，来源于外部ID"
        },
        {
          "key": "",
          "field": "SORelCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单相关编号",
          "description": "订单相关编号，来源于外部ID，如其它线上编号"
        },
        {
          "key": "",
          "field": "TradeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通电商,\n1=FAT=跨境电商",
          "need_index": "Y",
          "title": "贸易类型",
          "description": "贸易类型"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称，冗余显示用"
        },
        {
          "key": "",
          "field": "SODate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单时间",
          "description": "订单时间"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "'",
          "remark": "",
          "need_index": "",
          "title": "包装箱ID",
          "description": "包装箱ID"
        },
        {
          "key": "",
          "field": "PackageWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量",
          "description": "包裹重量，WMS写入"
        },
        {
          "key": "",
          "field": "PackageLength",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹长",
          "description": ""
        },
        {
          "key": "",
          "field": "PackageWidth",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹宽",
          "description": ""
        },
        {
          "key": "",
          "field": "PackageHeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹高",
          "description": ""
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "DeliveryType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Common=普通配送,\n1=ColdDelivery=冷链配送,\n2=EnvDelivery=环保配送",
          "need_index": "",
          "title": "发货服务类",
          "description": "发货服务类"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "WaybillNumberAreaCode",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单三段码",
          "description": "运单快递区域编码运单三段码或大头笔信息,"
        },
        {
          "key": "",
          "field": "WaybillResponse",
          "type": "VARCHAR(8000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运单获取反馈",
          "description": "运单号获取物流反馈"
        },
        {
          "key": "",
          "field": "WaybillDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "获取运单时间",
          "description": "获取运单时间"
        },
        {
          "key": "",
          "field": "ReceiveAreaGBCode",
          "type": "VARCHAR(6)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地区编码",
          "description": "收货地区编码"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货省",
          "description": "收货省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货市",
          "description": "收货市"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货区",
          "description": "收货区"
        },
        {
          "key": "",
          "field": "ReceiveAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货详细地址",
          "description": "收货详细地址"
        },
        {
          "key": "",
          "field": "ReceiveName",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "联系姓名",
          "description": "联系姓名"
        },
        {
          "key": "",
          "field": "ReceivePhone",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "联系电话",
          "description": "联系电话"
        },
        {
          "key": "",
          "field": "ReceiveZip",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货邮编",
          "description": "收货邮编"
        },
        {
          "key": "",
          "field": "SOItemType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=OneItemSingle=单件订单,\n2=OneItemMulti=单品多件,\n3=Multi=多品订单",
          "need_index": "",
          "title": "订单结构类型",
          "description": "订单结构类型，创建订单时，需要判断出订单结构"
        },
        {
          "key": "",
          "field": "SOItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "SOItemsQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "SOInStockDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单到仓时间",
          "description": "订单到仓时间"
        },
        {
          "key": "",
          "field": "SOOutStockDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "回传时间",
          "description": "回传时间"
        },
        {
          "key": "",
          "field": "SOConfirmDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单出库时间",
          "description": "订单出库时间"
        },
        {
          "key": "",
          "field": "ShipCollectedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单揽收时间",
          "description": "订单揽收时间"
        },
        {
          "key": "",
          "field": "ShipRouteStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "10",
          "remark": "10=Collected=已揽收,\n50=OnTransporting=转运在途,\n90=HavePutIn=已投放,\n100=Completed=已签收,\n101=Refused=已拒收,\n-100=PackageErr=问题件",
          "need_index": "",
          "title": "快递路由状态",
          "description": "快递路由状态"
        },
        {
          "key": "",
          "field": "TransInDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "转入时间",
          "description": "到底第一个转运中心的时间"
        },
        {
          "key": "",
          "field": "PutInDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "投放时间",
          "description": "放入驿站、快递柜的时间"
        },
        {
          "key": "",
          "field": "LastTransInDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单出库时间",
          "description": "到底的最后一个转运中心的时间"
        },
        {
          "key": "",
          "field": "LastNodeDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后一个节点时间",
          "description": "最后一个节点时间,最开始时大于等于揽收时间"
        },
        {
          "key": "",
          "field": "LastNodeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=NoDefine=无节点说明,\n1=Collected=已揽收\n2=Got=收取,\n4=Tin=转入,\n5=TOut=转出,\n8=Dispatch=已派送,\n9=HavePutIn=已投放,\n10=Completed=已签收,\n11=Refused=已拒收,\n-5=ReturnBack=退回中,\n-10=PackageErr=问题件,\n-100=ReturnCompleted=退回签收",
          "need_index": "",
          "title": "最后一个节点类型",
          "description": "最后一个节点类型，ShipRouteType："
        },
        {
          "key": "",
          "field": "LastNodeProvince",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "最后一个节点省份",
          "description": "最后一个节点省份"
        },
        {
          "key": "",
          "field": "LastNodeDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "最后一个节点说明",
          "description": "最后一个节点说明"
        },
        {
          "key": "",
          "field": "RouteDirection",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Forward=正向发出,\n1=Backward=逆向退回,\n-1=DirectionErr=异常",
          "need_index": "",
          "title": "路由方向",
          "description": "路由方向，普通情况都是正向发出，已签收并且退回签收为逆向退回，未签收且有退回记录为逆向退回。已签收并且最后路由描述不是退回签收并且有退回路由则为异常，表示拦截失败"
        },
        {
          "key": "",
          "field": "NextNodeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "下一个节点类型",
          "description": "下一个节点类型：ShipRouteType"
        },
        {
          "key": "",
          "field": "NextNodeProvince",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "下一个节点省份",
          "description": "下一个节点省份"
        },
        {
          "key": "",
          "field": "NextNodeDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "下一个节点说明",
          "description": "下一个节点说明"
        },
        {
          "key": "",
          "field": "WarningType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "预警类型",
          "description": "预警类型，预留，存放用于分析结果，默认0表示无预警"
        },
        {
          "key": "",
          "field": "WarningDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "预警说明",
          "description": "预警说明，预留"
        },
        {
          "key": "",
          "field": "RouteNodes",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "统一路由列表",
          "description": "统一路由节点列表信息，Json格式：\n[{\"NodeDate\":\"\",\"NodeType\":\"\",\"NodeProvince\":\"\",\"NoteDesc\":\"\"}]"
        },
        {
          "key": "",
          "field": "SourceRouteInfo",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原始路由信息",
          "description": "原始路由信息，现已不在此记录，放到SOSourceRoute表"
        },
        {
          "key": "",
          "field": "NodeCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "路由节点数量",
          "description": "路由节点数量"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID,冗余",
          "description": "电商平台ID"
        },
        {
          "key": "",
          "field": "VendorThirdECSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户电商配置编号",
          "description": "商户电商配置编号-店铺名称"
        },
        {
          "key": "",
          "field": "WaybillShipCfgSysNo",
          "type": "int",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "电子面单配置SysNo",
          "description": "记录获取运单时使用的店铺电子面单配置"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "SOSourceRoute",
      "sheet": "CWMTMS",
      "title": "路由原始报文",
      "fields": [
        {
          "key": "PK",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "SOPackageSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包裹SysNo",
          "description": "包裹SysNo"
        },
        {
          "key": "",
          "field": "SourceRouteInfo",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原始路由信息",
          "description": "原始路由信息"
        }
      ]
    },
    {
      "name": "TempShipRoute",
      "sheet": "CWMTMS",
      "title": "订单基础信息及路由信息，揽收后数据才会写入本表",
      "fields": [
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "PK",
          "field": "SOPackageSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包裹SysNo",
          "description": "包裹SysNo"
        },
        {
          "key": "",
          "field": "ShipCollectedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单揽收时间",
          "description": "订单揽收时间"
        },
        {
          "key": "",
          "field": "ShipRouteStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "10",
          "remark": "10=Collected=已揽收,\n50=OnTransporting=转运在途,\n90=HavePutIn=已投放,\n100=Completed=已签收,\n101=Refused=已拒收,\n-100=PackageErr=问题件",
          "need_index": "",
          "title": "快递路由状态",
          "description": "快递路由状态"
        },
        {
          "key": "",
          "field": "TransInDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "转入时间",
          "description": "到底第一个转运中心的时间"
        },
        {
          "key": "",
          "field": "PutInDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "投放时间",
          "description": "放入驿站、快递柜的时间"
        },
        {
          "key": "",
          "field": "LastTransInDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单出库时间",
          "description": "到底的最后一个转运中心的时间"
        },
        {
          "key": "",
          "field": "LastNodeDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后一个节点时间",
          "description": "最后一个节点时间,最开始时大于等于揽收时间"
        },
        {
          "key": "",
          "field": "LastNodeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=NoDefine=无节点说明,\n1=Collected=已揽收\n2=Got=收取,\n5=TOut=转出,\n8=Dispatch=已派送,\n9=HavePutIn=已投放,\n10=Completed=已签收,\n11=Refused=已拒收,\n-10=PackageErr=问题件",
          "need_index": "",
          "title": "最后一个节点类型",
          "description": "最后一个节点类型"
        },
        {
          "key": "",
          "field": "LastNodeProvince",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "最后一个节点省份",
          "description": "最后一个节点省份"
        },
        {
          "key": "",
          "field": "LastNodeDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "最后一个节点说明",
          "description": "最后一个节点说明"
        },
        {
          "key": "",
          "field": "RouteDirection",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Forward=正向发出,\n1=Backward=逆向退回,\n-1=DirectionErr=异常",
          "need_index": "",
          "title": "路由方向",
          "description": "路由方向，普通情况都是正向发出，已签收并且退回签收为逆向退回，未签收且有退回记录为逆向退回。已签收并且最后路由描述不是退回签收并且有退回路由则为异常，表示拦截失败"
        },
        {
          "key": "",
          "field": "NextNodeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=NoDefine=无节点说明,\n1=Collected=已揽收\n2=Got=收取,\n5=TOut=转出,\n8=Dispatch=已派送,\n9=HavePutIn=已投放,\n10=Completed=已签收,\n11=Refused=已拒收,\n-10=PackageErr=问题件",
          "need_index": "",
          "title": "下一个节点类型",
          "description": "下一个节点类型"
        },
        {
          "key": "",
          "field": "NextNodeProvince",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "下一个节点省份",
          "description": "下一个节点省份"
        },
        {
          "key": "",
          "field": "NextNodeDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "下一个节点说明",
          "description": "下一个节点说明"
        },
        {
          "key": "",
          "field": "RouteNodes",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "统一路由列表",
          "description": "统一路由节点列表信息，Json格式：\n[{\"NodeDate\":\"\",\"NodeType\":\"\",\"NodeProvince\":\"\",\"NoteDesc\":\"\"}]"
        },
        {
          "key": "",
          "field": "SourceRouteInfo",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原始路由信息",
          "description": "原始路由信息，现已不在此记录，放到SOSourceRoute表"
        },
        {
          "key": "",
          "field": "NodeCount",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "路由节点数量",
          "description": "路由节点数量"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        }
      ]
    },
    {
      "name": "WorkOrder",
      "sheet": "CWMWO",
      "title": "工单主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号，即工单号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WOTitle",
          "type": "NVARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "标题",
          "description": "工单标题"
        },
        {
          "key": "",
          "field": "WOCategoryID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "分类编码",
          "description": "分类编码，两位一级，暂定2级"
        },
        {
          "key": "",
          "field": "WOContent",
          "type": "TEXT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "内容描述",
          "description": "内容描述，图文混排"
        },
        {
          "key": "",
          "field": "BizNo",
          "type": "NVARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务单据号",
          "description": "业务单据号，根据分类确定是\n\"相关编号\"=OtherRefCode = 1,\n\"订单ID\"=SOID = 2,\n\"运单号\"= WaybillNumber = 3,\n\"入库单ID\"= POID = 4,\n\"BO单ID\"=BOID = 5,\n\"退货单ID\"=  RMNO = 6,\n\"其他\"=  OtherID = 7,"
        },
        {
          "key": "",
          "field": "BizNoSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务单据号",
          "description": "业务单据号（订单为sysNo）"
        },
        {
          "key": "",
          "field": "BizNoType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务单据类型",
          "description": "业务单据类型"
        },
        {
          "key": "",
          "field": "WOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=WaitForProcessing=待处理,\n20=Processing=受理中,\n50=Processed=已处理,\n100=Closed=已完结, \n-1=Voided=已作废",
          "need_index": "Y",
          "title": "工单状态",
          "description": "工单状态\n\t商户提交工单后，工单状态为：待处理；\n\t客服点击进入工单后，状态为：受理中；\n\t客服或相关业务任务处理后，状态为：已处理；\n\t商户根据处理结果，有两个种处理方式：（1）商户满意处理结果，点击确认完结后，状态变为：已完结；（2）商户不满意处理结果，点击“需继续处理”，工单状态重新变为：待处理。\n\t如果商户没有确认完结，在48小时后，已处理的自动变为：已完结；\n\t工单在受理前，商户可删除；变为受理中后，就只能作废，状态变为：已作废。"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "公司编号",
          "description": "创建者所属公司编号"
        },
        {
          "key": "",
          "field": "CompanyName",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "公司名称",
          "description": "公司名称，冗余"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "创建者所属商户编号"
        },
        {
          "key": "",
          "field": "VendorName",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户名称",
          "description": "商户名称，冗余，避免跨库查询"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "CurrentDeptSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "当前待处理部门编号",
          "description": "当前待处理部门编号，工单创建时，就直接指向客服部。"
        },
        {
          "key": "",
          "field": "CurrentHandleLock",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoHandle=还未处理,\n50=OnHandling=处理中,\n100=Handled=处理完毕",
          "need_index": "Y",
          "title": "领用标识",
          "description": "领用标识，当任务流转到指定部门时，如果没有指定人，则为0，如果指定了人，则直接为50，如果没指定人，有人领取则变为50；当处理完毕，同时更新为100；如果流转，则重新判断。"
        },
        {
          "key": "",
          "field": "CurrentHandleUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理人编号",
          "description": "处理人编号"
        },
        {
          "key": "",
          "field": "CurrentHandleUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理人姓名",
          "description": "处理人姓名"
        },
        {
          "key": "",
          "field": "NewQuestionFlag",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "有新的商户问题标识",
          "description": "有新的商户问题标识，0=无，1=有"
        },
        {
          "key": "",
          "field": "NewReplyFlag",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "有新的答复标识",
          "description": "有新的答复标识，0=无，1=有"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Low=低,\n50=Middle=中,\n100=High=高",
          "need_index": "",
          "title": "优先级",
          "description": "用于客服内部人员评估工单紧急情况"
        },
        {
          "key": "",
          "field": "HandleResult",
          "type": "int",
          "required": "null",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "处理结果",
          "description": "根据不同的工单分类在不同的处理结果列表中选择一个结果"
        },
        {
          "key": "",
          "field": "ResultName",
          "type": "VARCHAR(40)",
          "required": "null",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "处理结果名称",
          "description": "处理结果名称冗余"
        },
        {
          "key": "",
          "field": "CompensateDuty",
          "type": "int",
          "required": "null",
          "default": "",
          "remark": "0=NoDuty=无须赔付,\n1=ExpressDuty=快递赔付,\n2=StockDuty=仓库赔付",
          "need_index": "Y",
          "title": "赔付责任",
          "description": "根据工单类型和处理结果确定赔付责任"
        },
        {
          "key": "",
          "field": "AmountInvolved",
          "type": "Decimal(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "涉及金额",
          "description": "涉及金额"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(4000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "KeyWords",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "关键字",
          "description": "机器人触发工单创建时的关键字"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：FlytoWMS=云仓WMS,FlytoRobot=微信机器人"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工单创建时间",
          "description": "工单创建时间"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后编辑人编号",
          "description": "最后编辑人编号"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后编辑时间",
          "description": "最后编辑时间"
        }
      ]
    },
    {
      "name": "WOHandleRecord",
      "sheet": "CWMWO",
      "title": "工单处理信息记录,只要有人领取了任务或者指定到某人，就插入一条 待处理，内容为空的任务记录；处理完毕时，录入内容，更新状态，处理人及完成时间。",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工单号",
          "description": "工单号"
        },
        {
          "key": "",
          "field": "Content",
          "type": "TEXT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前处理内容",
          "description": "当前处理内容描述"
        },
        {
          "key": "",
          "field": "HandleDeptSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "当前待处理部门编号",
          "description": "当前待处理部门编号，工单创建时，就直接指向客服部。"
        },
        {
          "key": "",
          "field": "HandleUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理人编号",
          "description": "处理人编号"
        },
        {
          "key": "",
          "field": "HandleUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理人姓名",
          "description": "处理人姓名"
        },
        {
          "key": "",
          "field": "HandleStartDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理开始时间",
          "description": "处理开始时间"
        },
        {
          "key": "",
          "field": "HandleEndDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理完成时间",
          "description": "处理完成时间"
        },
        {
          "key": "",
          "field": "HandleStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0==WaitHandle=待处理,50 =处理中\n100=Handled=处理完毕",
          "need_index": "Y",
          "title": "处理状态",
          "description": "领用标识，当任务流转到指定部门时，如果没有指定人，则为0，如果指定了人，则直接为50，如果没指定人，有人领取则变为50；当处理完毕，同时更新为100；如果流转，则重新判断。"
        },
        {
          "key": "",
          "field": "HandleType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Handle=工单处理,\n2=Transfer=工单流转",
          "need_index": "",
          "title": "处理方式",
          "description": "处理方式"
        }
      ]
    },
    {
      "name": "Department",
      "sheet": "CWMWO",
      "title": "部门(未使用)",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "DeptName",
          "type": "NVARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "部门名称",
          "description": "部门名称"
        },
        {
          "key": "",
          "field": "FirstHandleFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "第一受理部门",
          "description": "第一受理部门标识，主要是客服部"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "NVARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "通用状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工单创建时间",
          "description": "工单创建时间"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后编辑人编号",
          "description": "最后编辑人编号"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后编辑时间",
          "description": "最后编辑时间"
        }
      ]
    },
    {
      "name": "DepartmentUser",
      "sheet": "CWMWO",
      "title": "部门用户关系表（未使用）",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "DeptSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "部门编号",
          "description": "部门编号"
        },
        {
          "key": "",
          "field": "UserId",
          "type": "varchar(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户账号",
          "description": "用户账号"
        },
        {
          "key": "",
          "field": "UserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户编号",
          "description": "用户编号"
        },
        {
          "key": "",
          "field": "UserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "用户姓名",
          "description": "用户姓名"
        },
        {
          "key": "",
          "field": "ManagerFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=No=否,\n1=Yes=是",
          "need_index": "",
          "title": "是否是主管",
          "description": "是否是主管"
        }
      ]
    },
    {
      "name": "WOInterceptWaybill",
      "sheet": "CWMWO",
      "title": "拦截运单记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "ShipTypeID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "快递方式",
          "description": "快递方式"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "InDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建描述",
          "description": "创建描述"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编辑时间",
          "description": "编辑时间"
        },
        {
          "key": "",
          "field": "EditDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "编辑描述",
          "description": "编辑描述"
        },
        {
          "key": "",
          "field": "InterceptResult",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Init=初始态,\n1=Success=拦截成功,\n9=Failure=拦截失败",
          "need_index": "Y",
          "title": "拦截结果",
          "description": "拦截结果"
        }
      ]
    },
    {
      "name": "WorkAssignMaster",
      "sheet": "CWMWO",
      "title": "工作项目分配记录主表，凡是进行人工分配的都需要记录，保留最近6个整月数据记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WorkItemID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "工作项目ID",
          "description": "工作项目ID，系统级ID是预设的，对应不同的计算方法，手动添加只能添加工序计件，ID为GUID去除横线生成的"
        },
        {
          "key": "",
          "field": "WorkItemName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "工作项目名称",
          "description": "工作项目名称"
        },
        {
          "key": "",
          "field": "WorkTaskName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "工作类型名称",
          "description": "工作类型名称，比如拣货WorkItem是人工区拣货时，这里填写具体的拣货方式-摘果任务拣货，还是同构任务拣货"
        },
        {
          "key": "",
          "field": "CurTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "当前业务组编号",
          "description": "当前工作时业务组编号"
        },
        {
          "key": "",
          "field": "CurTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前业务组名",
          "description": "当前工作时业务组名"
        },
        {
          "key": "",
          "field": "BindingWorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "被绑定的工人编号",
          "description": "被绑定的工人编号，存放的杂单纯复核对应的纯复核人员编号"
        },
        {
          "key": "",
          "field": "BindingWorkBenchSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "被绑定的工作台编号",
          "description": "被绑定的工作台编号，存放的批量单纯打包人员的工作台编号"
        },
        {
          "key": "",
          "field": "ChildGroupName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "填报型分组名",
          "description": "填报型分组名，工序计件填报型，需要进行分组（允许存在多个组），组名默认为：WorkItemName第N组"
        },
        {
          "key": "",
          "field": "BindingVASRecordSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "增值服务记录编号",
          "description": "指定的增值服务记录编号，如果是增值服务类型的工序计件，记录对应增值服务的编号。"
        },
        {
          "key": "",
          "field": "WorkTotalQty",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "分配工作的总工作量",
          "description": "分配工作的总工作量，用于工序计件或计时票时指定的工作量"
        },
        {
          "key": "",
          "field": "ItemAssignDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作项开始时间",
          "description": "工作项开始时间"
        },
        {
          "key": "",
          "field": "AssignStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "50=HaveAssign=已分配,\n100=WorkComplete=工作结束",
          "need_index": "Y",
          "title": "工作项目分配状态",
          "description": "工作项目分配状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "WorkAssignDetail",
      "sheet": "CWMWO",
      "title": "工作项目分配记录人员明细表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WorkAssignSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "工作项目分配主信息编号",
          "description": "工作项目分配主信息编号，如果是人工分配时，关联分配主信息编号，如果是系统自动获取更新到当前用户时，本字段为0"
        },
        {
          "key": "",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工人编号",
          "description": "工人编号"
        },
        {
          "key": "",
          "field": "SelfTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原本所在业务组编号",
          "description": "原本所在业务组编号"
        },
        {
          "key": "",
          "field": "SelfTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原本所在业务组名",
          "description": "原本所在业务组名"
        },
        {
          "key": "",
          "field": "CurTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "当前业务组编号",
          "description": "当前工作时业务组编号"
        },
        {
          "key": "",
          "field": "CurTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前业务组名",
          "description": "当前工作时业务组名"
        },
        {
          "key": "",
          "field": "WorkerAssignStartDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "分配起始时间",
          "description": "分配起始时间"
        },
        {
          "key": "",
          "field": "WorkerAssignEndDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "分配起始时间",
          "description": "分配起始时间"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        }
      ]
    },
    {
      "name": "WorkerCurrentItem",
      "sheet": "CWMWO",
      "title": "工人当前所在工作项目即时表，每个工人只有1行数据，不断自动更新； 工人的项目归属是最先更新的，先于WorkAssignMaster",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工人编号",
          "description": "工人编号"
        },
        {
          "key": "",
          "field": "SelfTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原本所在业务组编号",
          "description": "原本所在业务组编号"
        },
        {
          "key": "",
          "field": "SelfTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原本所在业务组名",
          "description": "原本所在业务组名"
        },
        {
          "key": "",
          "field": "CurTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "当前业务组编号",
          "description": "当前工作时业务组编号"
        },
        {
          "key": "",
          "field": "CurTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前业务组名",
          "description": "当前工作时业务组名"
        },
        {
          "key": "",
          "field": "WorkAssignSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "工作项目分配主信息编号",
          "description": "工作项目分配主信息编号，如果是人工分配时，关联分配主信息编号，如果是系统自动获取更新到当前用户时，本字段为0"
        },
        {
          "key": "",
          "field": "WorkItemID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "工作项目ID",
          "description": "工作项目ID，系统级ID是预设的，对应不同的计算方法，手动添加只能添加工序计件，ID为GUID去除横线生成的，计算时类似增值服务计算。"
        },
        {
          "key": "",
          "field": "WorkItemName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "工作项目名称",
          "description": "工作项目名称"
        },
        {
          "key": "",
          "field": "WorkTaskName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "工作类型名称",
          "description": "工作类型名称，比如拣货WorkItem是人工区拣货时，这里填写具体的拣货方式-摘果任务拣货，还是同构任务拣货"
        },
        {
          "key": "",
          "field": "ItemBeginDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "项目开始时间",
          "description": "项目开始时间"
        },
        {
          "key": "",
          "field": "WorkerAssignFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=AutoAssign=自动分配,\n1=ManuAssign=手动分配",
          "need_index": "Y",
          "title": "分配方式",
          "description": "人员分配方式，WMS系统中有作业数据的，为自动分配，比如拣货，复核等；没数据的为手动分配，比如纯打包"
        },
        {
          "key": "",
          "field": "Assigner",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "分配人员",
          "description": "分配人员，系统自动还是人工手动"
        }
      ]
    },
    {
      "name": "WorkerSalaryCalcDetail",
      "sheet": "CWMWO",
      "title": "工人工作计薪详细记录,WHSId-WorkerSysNo-WorkItemID-BizID建立Unique索引，避免重复记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1001,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WorkerSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工人编号",
          "description": "工人编号"
        },
        {
          "key": "",
          "field": "SelfTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原本所在业务组编号",
          "description": "原本所在业务组编号"
        },
        {
          "key": "",
          "field": "SelfTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原本所在业务组名",
          "description": "原本所在业务组名"
        },
        {
          "key": "",
          "field": "CurTeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "当前业务组编号",
          "description": "当前工作时业务组编号"
        },
        {
          "key": "",
          "field": "CurTeamName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前业务组名",
          "description": "当前工作时业务组名"
        },
        {
          "key": "",
          "field": "WorkTime",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作时间",
          "description": "工作时间，标准计件记录的是结束时间，手动分配的是开始时间"
        },
        {
          "key": "",
          "field": "JobPositionType",
          "type": "INT",
          "required": "",
          "default": "",
          "remark": "1=ProducePosition=生产岗,\n2=AuxilianPosition=辅助岗,\n3=ManagePosition=管理岗,\n9=TempPosition=临时人员",
          "need_index": "Y",
          "title": "岗位类型",
          "description": "岗位类型"
        },
        {
          "key": "",
          "field": "JobPositionSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "工作岗位编号",
          "description": "工作岗位编号，对应cwmmain.JobPosition.SysNo"
        },
        {
          "key": "",
          "field": "JobPositionName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "岗位名称",
          "description": "岗位名称"
        },
        {
          "key": "",
          "field": "WorkAssignSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "项目分配主信息",
          "description": "关联工作项目分配主信息编号"
        },
        {
          "key": "",
          "field": "BindWorkAssignSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "绑定的项目分配主信息",
          "description": "绑定的项目分配主信息，主要用于散单纯打包绑定的散单纯复核；其它的则是和WorkAssignSysNo一致"
        },
        {
          "key": "",
          "field": "WorkItemID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工作项目ID",
          "description": "工作项目ID，系统级ID是预设的，对应不同的计算方法，手动添加只能添加工序计件，ID为GUID去除横线生成的，计算时类似增值服务计算。"
        },
        {
          "key": "",
          "field": "WorkItemName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工作项目名称",
          "description": "工作项目名称"
        },
        {
          "key": "",
          "field": "WorkTaskName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "工作类型名称",
          "description": "工作类型名称，比如拣货WorkItem是人工区拣货时，这里填写具体的拣货方式-摘果任务拣货，还是同构任务拣货"
        },
        {
          "key": "",
          "field": "BizDataID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务数据ID",
          "description": "工作对应的业务数据ID，比如拣货时就是任务编号，摘果复核时就是订单编号等等，如果没有就是时间YYYYMMDDHHmmSS变成ID"
        },
        {
          "key": "",
          "field": "WorkNote",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "工作说明",
          "description": "工作说明"
        },
        {
          "key": "",
          "field": "SalaryCalcType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=BasicWork=基础工作,\n1=StdAIPieceWork=标准计件,\n2=ProcessPieceWork=工序计件,\n3=TimedTicket=计时票,\n4=JobAllowance=岗位津贴,\n-1=NoUsed=不适用",
          "need_index": "Y",
          "title": "计酬类型",
          "description": "计酬类型"
        },
        {
          "key": "",
          "field": "SalaryCfgJobPositionSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "岗位计薪项配置编号",
          "description": "岗位计薪项配置编号"
        },
        {
          "key": "",
          "field": "SalaryCfgProcessPieceWorkSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "工序计件的计薪配置编号",
          "description": "工序计件的计薪配置编号"
        },
        {
          "key": "",
          "field": "TotalStandardWorkTimes",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总的标准工作时长",
          "description": "总的标准工作时长，如果有分摊时，是总的标准时长"
        },
        {
          "key": "",
          "field": "StandardWorkTimes",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "标准工作时长",
          "description": "标准工作时长，也即是计酬的工作时长-标准计件"
        },
        {
          "key": "",
          "field": "ActualWorkTimes",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实际工作时长",
          "description": "实际工作时长"
        },
        {
          "key": "",
          "field": "TotalWorkQty",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总工作数量",
          "description": "总工作数量，多人一小组时，分摊前的总工作量"
        },
        {
          "key": "",
          "field": "WorkQty",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "完成工作数量",
          "description": "完成工作数量，对于工序计件和工时票来说就是其工作量"
        },
        {
          "key": "",
          "field": "SalaryPrice",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "项目单价",
          "description": "项目单价"
        },
        {
          "key": "",
          "field": "SalaryPriceUnit",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计价单位",
          "description": "计价单位"
        },
        {
          "key": "",
          "field": "TotalSalaryAmount",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总酬劳金额",
          "description": "总的酬劳金额，多人一小组时，分摊前的总酬劳"
        },
        {
          "key": "",
          "field": "SalaryAmount",
          "type": "DECIMAL(10,2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "酬劳金额",
          "description": "酬劳金额"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "AssignBatchID",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "分配批号",
          "description": "分配批号，主要用于分配批量纯打包时，区分同一个波次号，分配到同一桌，分配了多次，能够区分出来。当有值时，格式:yyyyMMddHHmmss"
        },
        {
          "key": "",
          "field": "ExceptionFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoException=无异常,\n1=HasException=有异常",
          "need_index": "",
          "title": "异常标识",
          "description": "异常标识"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ShipCostCfgMaster",
      "sheet": "CWMACCT",
      "title": "仓库物流成本设置主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "CostType",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=StandardCost=标准成本,\n1=AdjustedCost=调价成本",
          "need_index": "",
          "title": "成本类型",
          "description": "成本类型"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeMSN",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流MSN",
          "description": "物流MSN"
        },
        {
          "key": "",
          "field": "StandardCostSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "所属标准成本的系统编号",
          "description": "如果是调价成本，则为所属标准成本的系统编号"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间"
        },
        {
          "key": "",
          "field": "FileSite",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "文件路径",
          "description": "导入文件路径"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "优先级",
          "description": "优先级,成本配置优先级"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "配置状态",
          "description": "配置状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipCostCfg",
      "sheet": "CWMACCT",
      "title": "仓库物流成本设置明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "MasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库物流成本设置主表系统编号",
          "description": "仓库物流成本设置主表系统编号"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeMSN",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流MSN",
          "description": "物流MSN"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "省名",
          "description": "省名"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "城市名称",
          "description": "城市名称"
        },
        {
          "key": "",
          "field": "LimitTop",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上限",
          "description": "上限，单位克"
        },
        {
          "key": "",
          "field": "LimitBottom",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "下限",
          "description": "下限，单位克"
        },
        {
          "key": "",
          "field": "BaseWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "首重",
          "description": "首重"
        },
        {
          "key": "",
          "field": "BaseAmount",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "首重价",
          "description": "首重价"
        },
        {
          "key": "",
          "field": "IncrementWeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "续重增量",
          "description": "续重增量，克"
        },
        {
          "key": "",
          "field": "IncrementPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "续重价格",
          "description": "续重价格"
        },
        {
          "key": "",
          "field": "OtherAmount",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "其它金额",
          "description": "其它金额"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间"
        },
        {
          "key": "",
          "field": "VWRate",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "体积重量抛比",
          "description": "体积重量抛比"
        },
        {
          "key": "",
          "field": "FileSite",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "文件路径",
          "description": "导入文件路径(废弃，后续写入Master表）"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeMSN",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流MSN",
          "description": "物流MSN"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "省名",
          "description": "省名"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "城市名称",
          "description": "城市名称"
        },
        {
          "key": "",
          "field": "LimitTop",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上限",
          "description": "上限，单位克"
        },
        {
          "key": "",
          "field": "LimitBottom",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "下限",
          "description": "下限，单位克"
        },
        {
          "key": "",
          "field": "BaseWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "首重",
          "description": "首重"
        },
        {
          "key": "",
          "field": "BaseAmount",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "首重价",
          "description": "首重价"
        },
        {
          "key": "",
          "field": "IncrementWeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "续重增量",
          "description": "续重增量，克"
        },
        {
          "key": "",
          "field": "IncrementPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "续重价格",
          "description": "续重价格"
        },
        {
          "key": "",
          "field": "OtherAmount",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "其它金额",
          "description": "其它金额"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间"
        },
        {
          "key": "",
          "field": "VWRate",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "体积重量抛比",
          "description": "体积重量抛比"
        },
        {
          "key": "",
          "field": "FileSite",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "文件路径",
          "description": "导入文件路径"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipFeeCfgMaster",
      "sheet": "CWMACCT",
      "title": "商户物流费用方案",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipPlanName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "方案名称",
          "description": "方案名称"
        },
        {
          "key": "",
          "field": "ShipPlanDesc",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "方案说明",
          "description": "方案说明"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "方案状态",
          "description": "方案状态"
        },
        {
          "key": "",
          "field": "PlanPriority",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "优先级",
          "description": "优先级,数值越大优先级越高"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间"
        },
        {
          "key": "",
          "field": "FileSite",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "文件路径",
          "description": "导入文件路径"
        },
        {
          "key": "",
          "field": "FixedPrice",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "是否固定价格（统包价）",
          "description": "是统包价 在计算费用时 就不计算包耗材等费用"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipFeeCfgDetail",
      "sheet": "CWMACCT",
      "title": "商户物流费用方案明细",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipFeeSysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "方案编号",
          "description": "方案编号"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(20)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "省名",
          "description": "省名"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市名",
          "description": "市名"
        },
        {
          "key": "",
          "field": "LimitTop",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "上限",
          "description": "上限，单位克"
        },
        {
          "key": "",
          "field": "LimitBottom",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "下限",
          "description": "下限，单位克"
        },
        {
          "key": "",
          "field": "BaseWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "首重",
          "description": "首重"
        },
        {
          "key": "",
          "field": "BaseAmount",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "首重价",
          "description": "首重价"
        },
        {
          "key": "",
          "field": "IncrementWeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "续重增量",
          "description": "续重增量，克"
        },
        {
          "key": "",
          "field": "IncrementPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "续重价格",
          "description": "续重价格"
        },
        {
          "key": "",
          "field": "OtherAmount",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "其它金额",
          "description": "其它金额"
        },
        {
          "key": "",
          "field": "LowestFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最低运费",
          "description": "最低运费"
        },
        {
          "key": "",
          "field": "VWRate",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "体积重量抛比",
          "description": "体积重量抛比"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipFeeCfgCondition",
      "sheet": "CWMACCT",
      "title": "商户物流费用启用条件",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipFeeSysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "方案编号",
          "description": "方案编号"
        },
        {
          "key": "",
          "field": "ConditionType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Express=快递,\n2=Temperature=温区,\n3=BillType = 单据类型",
          "need_index": "Y",
          "title": "条件类型",
          "description": "条件类型，枚举"
        },
        {
          "key": "",
          "field": "ConditionValue",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "条件对应值",
          "description": "条件对应值"
        },
        {
          "key": "",
          "field": "ConditionValueName",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "条件对应值的名称",
          "description": "条件对应值名称"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "ShipFeeCfgVendor",
      "sheet": "CWMACCT",
      "title": "商户物流费用使用商户",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ShipFeeSysNo",
          "type": "int",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "方案编号",
          "description": "方案编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorWorkFeeCfg",
      "sheet": "CWMACCT",
      "title": "商户仓储及作业费用设置【VendorChargeSetMaster上线后废弃】",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "StorageFeeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=StoragePiece=按件收,\n2=StorageVolume=按体积收",
          "need_index": "",
          "title": "仓储计费方式",
          "description": "仓储计费方式"
        },
        {
          "key": "",
          "field": "StoragePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "仓储费单价",
          "description": "仓储费单价"
        },
        {
          "key": "",
          "field": "RecBaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货-基础作业费",
          "description": "订单基础作业费"
        },
        {
          "key": "",
          "field": "RecPalletWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货-每托卸货单价",
          "description": "收货-每托卸货单价"
        },
        {
          "key": "",
          "field": "RecCheckWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货-质检单价",
          "description": "收货-质检单价"
        },
        {
          "key": "",
          "field": "RecLabelWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货-商品贴标单价",
          "description": "收货-商品贴标单价"
        },
        {
          "key": "",
          "field": "RecBoxWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货-每箱作业费",
          "description": "订单基础作业费"
        },
        {
          "key": "",
          "field": "RecCBMWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "收货-每立方作业费",
          "description": "订单基础作业费"
        },
        {
          "key": "",
          "field": "SOBaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单基础作业费",
          "description": "订单基础作业费【按包裹】"
        },
        {
          "key": "",
          "field": "SOBaseRowLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单基础行数限制",
          "description": "订单基础行数限制"
        },
        {
          "key": "",
          "field": "SOBasePieceLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单基础件数限制",
          "description": "订单基础件数限制"
        },
        {
          "key": "",
          "field": "SOOverRowPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单超行每行加收",
          "description": "订单超行每行加收"
        },
        {
          "key": "",
          "field": "SOOverPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单超件加收",
          "description": "订单超件加收"
        },
        {
          "key": "",
          "field": "SOIncrement",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "超件增数",
          "description": "每超多少件算一个超件阶梯：默认1件，比如5件以上每增加 3 件增加 0.2 元"
        },
        {
          "key": "",
          "field": "SOAdded1Price",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单增值物气柱袋单价",
          "description": "订单增值物气柱袋单价"
        },
        {
          "key": "",
          "field": "SOAdded2Price",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单增值物铝泡膜单价",
          "description": "订单增值物铝泡膜单价"
        },
        {
          "key": "",
          "field": "SOAdded3Price",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单其它增值单价",
          "description": "订单其它增值单价"
        },
        {
          "key": "",
          "field": "SOIceBagPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单冰袋单价",
          "description": "订单基础作业费"
        },
        {
          "key": "",
          "field": "InterecptBaseFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截基础费",
          "description": "拦截基础作业费【按订单】"
        },
        {
          "key": "",
          "field": "InterceptWorkFeePercent",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截基于订单作业费比率",
          "description": "拦截基于订单作业费收取比率"
        },
        {
          "key": "",
          "field": "InterceptRowLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截行数限制",
          "description": "拦截行数限制"
        },
        {
          "key": "",
          "field": "InterceptPieceLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截件数限制",
          "description": "拦截件数限制"
        },
        {
          "key": "",
          "field": "InterceptOverRowPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截超行每行加收",
          "description": "拦截超行每行加收"
        },
        {
          "key": "",
          "field": "InterceptOverPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截超件每件加收",
          "description": "拦截超件每件加收"
        },
        {
          "key": "",
          "field": "InterceptIncrement",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "超件增数",
          "description": "每超多少件算一个超件阶梯：默认1件，比如5件以上每增加 3 件增加 0.2 元"
        },
        {
          "key": "",
          "field": "RMBaseFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货基础费",
          "description": "退货基础费【按退货单】"
        },
        {
          "key": "",
          "field": "RMWorkFeePercent",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货基于订单作业费比率",
          "description": "退货基于订单作业费收取比率"
        },
        {
          "key": "",
          "field": "RMShipFeePercent",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货基于订单快递费比率",
          "description": "退货基于订单快递费比率"
        },
        {
          "key": "",
          "field": "RMRowLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货行数限制",
          "description": "退货行数限制"
        },
        {
          "key": "",
          "field": "RMPieceLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货件数限制",
          "description": "退货件数限制"
        },
        {
          "key": "",
          "field": "RMOverRowPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货超行每行加收",
          "description": "退货超行每行加收"
        },
        {
          "key": "",
          "field": "RMOverPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货超件每件加收",
          "description": "退货超件每件加收"
        },
        {
          "key": "",
          "field": "RMIncrement",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "超件增数",
          "description": "每超多少件算一个超件阶梯：默认1件，比如5件以上每增加 3 件增加 0.2 元"
        },
        {
          "key": "",
          "field": "BOBaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单基础作业费",
          "description": "订单基础作业费"
        },
        {
          "key": "",
          "field": "BOPalletWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单每托作业费",
          "description": "BO单每托作业费"
        },
        {
          "key": "",
          "field": "BOBoxWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单每箱作业费",
          "description": "BO单每箱作业费"
        },
        {
          "key": "",
          "field": "BOPieceWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单每件作业费",
          "description": "BO单每件作业费"
        },
        {
          "key": "",
          "field": "BOCBMWorkPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单每立方作业费",
          "description": "订单基础作业费"
        },
        {
          "key": "",
          "field": "BOPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "BO单托盘单价",
          "description": "订单基础作业费"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "VendorBill",
      "sheet": "CWMACCT",
      "title": "商户账单",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "BillMonth",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单年月",
          "description": "账单年月：2022-06"
        },
        {
          "key": "",
          "field": "BillName",
          "type": "VARCHAR(300)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "报表名称",
          "description": "报表名称"
        },
        {
          "key": "",
          "field": "BillFilePath",
          "type": "VARCHAR(500)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "文件路径",
          "description": "文件路径"
        },
        {
          "key": "",
          "field": "BillStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=账单数据生成中,\n10=BuildedData=已生成账单数据,\n15=FileBuilding=账单文件生成中,\n20=BuildedFile=已生成账单文件,\n50=OnConfirming=客户确认中,\n100=Completed=已关闭\n-1=Fail=账单生成失败\n-2=BuildFileFail=账单文件生成失败",
          "need_index": "",
          "title": "账单状态",
          "description": "账单状态"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(500)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorSOFee",
      "sheet": "CWMACCT",
      "title": "商户订单出库费用，含运费，作业费，包材费，增值费；其中SOIceBagPrice是冰袋数量，SOAdded1Fee是包裹记账重量，SOAdded2Fee是3公斤以上的首重费用，SOAdded3Fee是妙可顺丰的快递管理费",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单编号",
          "description": "订单编号"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹编号",
          "description": "包裹编号"
        },
        {
          "key": "",
          "field": "WorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "作业费",
          "description": "作业费"
        },
        {
          "key": "",
          "field": "ShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "快递费",
          "description": "快递费（取三个费用最大值）"
        },
        {
          "key": "",
          "field": "PackingTitle",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "包材名称规格",
          "description": "包材名称规格"
        },
        {
          "key": "",
          "field": "PackingFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包材费",
          "description": "包材费"
        },
        {
          "key": "",
          "field": "SOAdded1Title",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "附加费1说明",
          "description": "附加费1说明"
        },
        {
          "key": "",
          "field": "SOAdded1Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "附加费1",
          "description": "附加费1"
        },
        {
          "key": "",
          "field": "SOAdded2Title",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "附加费2说明",
          "description": "附加费2说明"
        },
        {
          "key": "",
          "field": "SOAdded2Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "附加费2",
          "description": "附加费2"
        },
        {
          "key": "",
          "field": "SOAdded3Title",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "附加费3说明",
          "description": "附加费3说明"
        },
        {
          "key": "",
          "field": "SOAdded3Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "附加费3",
          "description": "附加费3"
        },
        {
          "key": "",
          "field": "SOIceBagTitle",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "冰袋说明",
          "description": "冰袋说明"
        },
        {
          "key": "",
          "field": "SOIceBagPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "冰袋费用",
          "description": "冰袋费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "TheoryWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹理论重量",
          "description": "包裹理论重量"
        },
        {
          "key": "",
          "field": "CalcWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计费重量",
          "description": "计费重量（取重量最大值）"
        },
        {
          "key": "",
          "field": "VolumeWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "体积重量",
          "description": "体积重量"
        },
        {
          "key": "",
          "field": "VolumeShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "体积快递费",
          "description": "体积快递费"
        },
        {
          "key": "",
          "field": "BillShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "账单重量快递费",
          "description": "账单快递费"
        },
        {
          "key": "",
          "field": "PackageShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹快递费",
          "description": "包裹快递费"
        },
        {
          "key": "",
          "field": "BillShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单快递",
          "description": "账单快递"
        },
        {
          "key": "",
          "field": "BillShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单快递名称",
          "description": "账单快递"
        },
        {
          "key": "",
          "field": "Expand1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展1",
          "description": "拓展1"
        },
        {
          "key": "",
          "field": "Expand2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展2",
          "description": "拓展2"
        },
        {
          "key": "",
          "field": "Expand3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展3",
          "description": "拓展3"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorSOInterceptFee",
      "sheet": "CWMACCT",
      "title": "商户订单拦截回库费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单编号",
          "description": "订单编号"
        },
        {
          "key": "",
          "field": "WorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "作业费",
          "description": "作业费"
        },
        {
          "key": "",
          "field": "PackingTitle",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "包材名称规格",
          "description": "包材名称规格"
        },
        {
          "key": "",
          "field": "PackingFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包材费",
          "description": "包材费"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorRMFee",
      "sheet": "CWMACCT",
      "title": "商户订单售后退货回库费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "RMRPackageSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货包裹编号",
          "description": "退货包裹编号"
        },
        {
          "key": "",
          "field": "RMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货单编号",
          "description": "退货单编号"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单编号",
          "description": "订单编号"
        },
        {
          "key": "",
          "field": "WorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货作业费",
          "description": "退货作业费"
        },
        {
          "key": "",
          "field": "ShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货快递费",
          "description": "退货快递费"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorStorageFee",
      "sheet": "CWMACCT",
      "title": "商户仓储费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "VendorBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "SnapshotDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "快照日期",
          "description": "快照日期"
        },
        {
          "key": "",
          "field": "StorageFeeType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=StoragePiece=按件收,\n2=StorageVolume=按体积收",
          "need_index": "",
          "title": "仓储计费方式",
          "description": "仓储计费方式"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "InvPalletQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托位总数",
          "description": "托位总数"
        },
        {
          "key": "",
          "field": "InvBoxQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱位总数",
          "description": "箱位总数，根据配置中的计算模式计算"
        },
        {
          "key": "",
          "field": "MinAreaQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最低费用",
          "description": "最低费用"
        },
        {
          "key": "",
          "field": "StorageQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "仓储数量",
          "description": "换算的账单面积或体积数量"
        },
        {
          "key": "",
          "field": "UnitPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "单价",
          "description": "单价"
        },
        {
          "key": "",
          "field": "StorageFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓储费用",
          "description": "仓储费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorBOFee",
      "sheet": "CWMACCT",
      "title": "商户BO单相关费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "入库单编号",
          "description": "入库单编号"
        },
        {
          "key": "",
          "field": "BaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "PalletQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "整托数量",
          "description": "整托数量"
        },
        {
          "key": "",
          "field": "PalletWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "整托作业费",
          "description": "整托作业费"
        },
        {
          "key": "",
          "field": "BoxQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "整箱数量",
          "description": "整箱数量"
        },
        {
          "key": "",
          "field": "BoxWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "整箱作业费",
          "description": "整箱作业费"
        },
        {
          "key": "",
          "field": "PieceQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "件数量",
          "description": "件数量"
        },
        {
          "key": "",
          "field": "PieceWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "件数作业费",
          "description": "件数作业费"
        },
        {
          "key": "",
          "field": "CBMQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "立方数量",
          "description": "立方数量"
        },
        {
          "key": "",
          "field": "CBMWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "体积作业费",
          "description": "体积作业费"
        },
        {
          "key": "",
          "field": "UsePalletQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "使用托盘数量",
          "description": "使用托盘数量"
        },
        {
          "key": "",
          "field": "UsePalletFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托盘费",
          "description": "托盘费"
        },
        {
          "key": "",
          "field": "CalcWeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计费重量",
          "description": "计费重量"
        },
        {
          "key": "",
          "field": "ShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运费",
          "description": "运费"
        },
        {
          "key": "",
          "field": "OtherFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "其他增值费",
          "description": "其他增值费"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "Expand1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展1",
          "description": "拓展1"
        },
        {
          "key": "",
          "field": "Expand2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展2",
          "description": "拓展2"
        },
        {
          "key": "",
          "field": "Expand3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展3",
          "description": "拓展3"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorVASFee",
      "sheet": "CWMACCT",
      "title": "商户增值服务费用【VendorVASRecord上线后废弃】",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BatchNum",
          "type": "CHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "导入批号",
          "description": "导入批号(年月日时分秒加用户编号)"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "OrderDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单据日期",
          "description": "单据日期"
        },
        {
          "key": "",
          "field": "VendorName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户名称",
          "description": "商户名称"
        },
        {
          "key": "",
          "field": "VASType",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "增值类型",
          "description": "增值类型"
        },
        {
          "key": "",
          "field": "OrderNum",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单号",
          "description": "单号"
        },
        {
          "key": "",
          "field": "POID",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "POID",
          "description": "POID"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单位",
          "description": "单位"
        },
        {
          "key": "",
          "field": "UnitPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单价",
          "description": "单价"
        },
        {
          "key": "",
          "field": "VASFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "费用",
          "description": "费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "IsCalculate",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1计算0不计算",
          "need_index": "",
          "title": "快递费计算",
          "description": "快递费计算"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递",
          "description": "快递"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递单号",
          "description": "快递单号"
        },
        {
          "key": "",
          "field": "Weight",
          "type": "DECIMAL(18, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量KG",
          "description": "重量KG"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "ShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "快递费",
          "description": "快递费"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "ShipCostFee",
      "sheet": "CWMACCT",
      "title": "快递费用成本",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "包裹编号",
          "description": "包裹编号"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "OutStockDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "包装箱ID",
          "description": "包装箱ID"
        },
        {
          "key": "",
          "field": "PackageWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量",
          "description": "包裹重量，WMS写入"
        },
        {
          "key": "",
          "field": "CostFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "快递成本费",
          "description": "快递成本费"
        },
        {
          "key": "",
          "field": "BillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "快递公司账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "BillPackageWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "快递公司账单重量",
          "description": "快递公司账单费用"
        },
        {
          "key": "",
          "field": "BillFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "快递公司账单费用",
          "description": "快递公司账单费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    },
    {
      "name": "ShipBillFee",
      "sheet": "CWMACCT",
      "title": "快递公司账单表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillDate",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "账单年月",
          "description": "账单年月：202206"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "ProductType",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流产品类型",
          "description": "物流产品类型"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "OutStockDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间"
        },
        {
          "key": "",
          "field": "CustomerName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "记账客户",
          "description": "记账客户"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "BillPackageWeight",
          "type": "DECIMAL(18, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "快递公司账单重量",
          "description": "快递公司账单费用"
        },
        {
          "key": "",
          "field": "BillFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "快递公司账单费用",
          "description": "快递公司账单费用"
        },
        {
          "key": "",
          "field": "OtherFee1",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "附加费1（疫情派费）",
          "description": "附加费1（疫情派费）"
        },
        {
          "key": "",
          "field": "OtherFee2",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "附加费2",
          "description": "附加费2"
        },
        {
          "key": "",
          "field": "OtherFee3",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "附加费3",
          "description": "附加费3"
        },
        {
          "key": "",
          "field": "ShipCostFeeSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "飞驼成本费用编号",
          "description": "飞驼成本费用编号"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "TeamBusinessDaily",
      "sheet": "CWMACCT",
      "title": "业务组经营日报",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillDate",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "日期",
          "description": "年月日：20220601"
        },
        {
          "key": "",
          "field": "TeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组",
          "description": "业务组"
        },
        {
          "key": "",
          "field": "FormalWorkerHours",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "正式工工时",
          "description": "正式工工时"
        },
        {
          "key": "",
          "field": "DispatchWorkerHours",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "派遣工工时",
          "description": "派遣工工时"
        },
        {
          "key": "",
          "field": "LaborWorkerHours",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "劳务工工时",
          "description": "劳务工工时"
        },
        {
          "key": "",
          "field": "TraineeHours",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "实习生工时",
          "description": "实习生工时"
        },
        {
          "key": "",
          "field": "TemporaryWorkerHours",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "临时工工时",
          "description": "临时工工时"
        },
        {
          "key": "",
          "field": "SOPCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单出库包裹数量",
          "description": "订单出库包裹数量（取已回传）"
        },
        {
          "key": "",
          "field": "SOWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单操作费",
          "description": "订单操作费（统包订单所有费用记到快递费中）"
        },
        {
          "key": "",
          "field": "SOShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单快递费",
          "description": "订单快递费"
        },
        {
          "key": "",
          "field": "SOPackingFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单包材费",
          "description": "订单包材费"
        },
        {
          "key": "",
          "field": "SOShipCostFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单快递成本费",
          "description": "订单快递成本费"
        },
        {
          "key": "",
          "field": "SOPackingCostFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单包材成本费",
          "description": "订单包材成本费"
        },
        {
          "key": "",
          "field": "SOConsumablesCostFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单耗材成本",
          "description": "订单耗材成本"
        },
        {
          "key": "",
          "field": "StorageCellQty",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "使用库位数量和总有效库位占比",
          "description": "使用库位数量和总有效库位占比"
        },
        {
          "key": "",
          "field": "RobotProductQtyProportion",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "机器区商品件数和总件数的占比",
          "description": "机器区商品件数和总件数的占比"
        },
        {
          "key": "",
          "field": "POQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "完成入库单数",
          "description": "完成入库单数"
        },
        {
          "key": "",
          "field": "POWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "入库费用",
          "description": "入库费用"
        },
        {
          "key": "",
          "field": "RMRPackageQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "销退包裹数",
          "description": "销退包裹数（入库上架完成的数量）"
        },
        {
          "key": "",
          "field": "RMWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "销退操作费",
          "description": "销退操作费"
        },
        {
          "key": "",
          "field": "RMShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "销退快递费",
          "description": "销退快递费"
        },
        {
          "key": "",
          "field": "AllTaskQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总任务数",
          "description": "总任务数"
        },
        {
          "key": "",
          "field": "OccupyTaskQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "占用任务数",
          "description": "占用任务数"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorBusinessDaily",
      "sheet": "CWMACCT",
      "title": "商户经营日报",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillDate",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "日期",
          "description": "年月日：20220601"
        },
        {
          "key": "",
          "field": "TeamSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务组",
          "description": "业务组：取发货业务组"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "SOPCount",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单出库包裹数量",
          "description": "订单出库包裹数量（取已回传）"
        },
        {
          "key": "",
          "field": "SOWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单操作费",
          "description": "订单操作费（统包订单所有费用记到快递费中）"
        },
        {
          "key": "",
          "field": "SOShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单快递费",
          "description": "订单快递费"
        },
        {
          "key": "",
          "field": "SOPackingFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单包材费",
          "description": "订单包材费"
        },
        {
          "key": "",
          "field": "SOShipCostFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单快递成本费",
          "description": "订单快递成本费"
        },
        {
          "key": "",
          "field": "SOPackingCostFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单包材成本费",
          "description": "订单包材成本费"
        },
        {
          "key": "",
          "field": "SOConsumablesCostFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "订单耗材成本",
          "description": "订单耗材成本"
        },
        {
          "key": "",
          "field": "StorageCellQty",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "使用库位数量和总有效库位占比",
          "description": "使用库位数量和总有效库位占比"
        },
        {
          "key": "",
          "field": "RobotProductQtyProportion",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "机器区商品件数和总件数的占比",
          "description": "机器区商品件数和总件数的占比"
        },
        {
          "key": "",
          "field": "POQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "完成入库单数",
          "description": "完成入库单数"
        },
        {
          "key": "",
          "field": "POWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "入库费用",
          "description": "入库费用"
        },
        {
          "key": "",
          "field": "RMRPackageQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "销退包裹数",
          "description": "销退包裹数（入库上架完成的数量）"
        },
        {
          "key": "",
          "field": "RMWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "销退操作费",
          "description": "销退操作费"
        },
        {
          "key": "",
          "field": "RMShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "销退快递费",
          "description": "销退快递费"
        },
        {
          "key": "",
          "field": "PickTaskQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "高位拣货任务数",
          "description": "高位真实库区拣货任务数"
        },
        {
          "key": "",
          "field": "UppTaskQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架任务数",
          "description": "上架任务数（排除货权转移）"
        },
        {
          "key": "",
          "field": "MoveTaskQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "移库任务数",
          "description": "移库任务数（源库区 P和GE 排除加工移库）"
        },
        {
          "key": "",
          "field": "SPOrderTaskQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "移库任务数（预处理加工单移库任务）",
          "description": "移库任务数（源库区 P和GE 的加工移库）"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "VendorChargeSetMaster",
      "sheet": "CWMACCT",
      "title": "商户收费报价主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号，另外系统中自动生成报价名称，格式为：商户名_起始日期-截止日期_报价表"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "起始时间",
          "description": "起始时间"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "Date",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "截止时间",
          "description": "截止时间，到截止日期的23:59:59.999"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "SetFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=NoSetting=无配置,\n50=OnSetting=配置中,\n100=Completed=配置完成",
          "need_index": "Y",
          "title": "配置标识",
          "description": "配置标识，没有数据就是无配置"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "VendorChargeSetItemPrice",
      "sheet": "CWMACCT",
      "title": "商户收费服务项报价细项",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "ChargeSetMasterSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户增值服务项报价主表编号",
          "description": "商户增值服务项报价主表编号"
        },
        {
          "key": "",
          "field": "ChargeItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "收费项编号",
          "description": "收费项编号"
        },
        {
          "key": "",
          "field": "ItemPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "项目价格",
          "description": "项目价格，只要单位ChargeItemUnit中含有\"/\"符号，表示需要填写报价"
        },
        {
          "key": "",
          "field": "ExceedBaseRow",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件基础行数",
          "description": "超件基础行数"
        },
        {
          "key": "",
          "field": "ExceedBaseQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件基础件数",
          "description": "超件基础件数"
        },
        {
          "key": "",
          "field": "ExceedIncrement",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件增量数",
          "description": "超件增量数"
        },
        {
          "key": "",
          "field": "ExceedPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件增量价格",
          "description": "超件增量价格"
        },
        {
          "key": "",
          "field": "TransferParamPA",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托盘面积换算比",
          "description": "托盘面积换算比"
        },
        {
          "key": "",
          "field": "TransferParamMA",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "零拣面积换算比",
          "description": "零拣面积换算比"
        },
        {
          "key": "",
          "field": "TransferParamMP",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "零拣托盘换算比",
          "description": "零拣托盘换算比"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注，记录最近几次修改细节"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "VendorVASRecord",
      "sheet": "CWMACCT",
      "title": "商户增值服务项记录",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "商户编号"
        },
        {
          "key": "",
          "field": "ChargeItemCategory",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "项目分类",
          "description": "项目分类"
        },
        {
          "key": "",
          "field": "ChargeItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "计费项编号",
          "description": "计费项编号"
        },
        {
          "key": "",
          "field": "ChargeItemName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计费项目",
          "description": "计费项目"
        },
        {
          "key": "",
          "field": "ChargeItemUnit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计费单位",
          "description": "计费单位"
        },
        {
          "key": "",
          "field": "VASDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "服务时间",
          "description": "服务时间，到分即可"
        },
        {
          "key": "",
          "field": "VASQty",
          "type": "DECIMAL(12, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "服务数量",
          "description": "服务数量"
        },
        {
          "key": "",
          "field": "VASItemPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "服务价格",
          "description": "服务价格"
        },
        {
          "key": "",
          "field": "VASFee",
          "type": "DECIMAL(12, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "费用金额",
          "description": "费用金额"
        },
        {
          "key": "",
          "field": "FeeCalcType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=ManualInput=手动填入,\n1=BasePrice=按报价计算",
          "need_index": "",
          "title": "费用计算方式",
          "description": "费用计算方式"
        },
        {
          "key": "",
          "field": "PayConfirmFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "-99",
          "remark": "-99=NoNeed=无需支付确认,\n0=WaitPayConfirm=待支付确认,\n1=PayConfirmed=已支付确认",
          "need_index": "",
          "title": "支付确认标识",
          "description": "支付确认标识"
        },
        {
          "key": "",
          "field": "FileUrl",
          "type": "VARCHAR(600)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "文件地址",
          "description": "文件地址(最多3个照片)"
        },
        {
          "key": "",
          "field": "VASRecordStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "100",
          "remark": "0=Init=初始态,\n50=OnConfirm=确认中,\n100=Completed=已完结",
          "need_index": "",
          "title": "记录状态",
          "description": "记录状态，预留，以后结算平台需要流程控制。"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(600)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "事由备注",
          "description": "事由备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者编号",
          "description": "创建者编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者姓名",
          "description": "创建者姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人系统编号",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "VendorVASRecordBizData",
      "sheet": "CWMACCT",
      "title": "商户增值服务项记录与相关业务数据关系，可以记录多条",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VASRecordSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "增值服务记录编号",
          "description": "增值服务记录编号"
        },
        {
          "key": "",
          "field": "OrderSysNoes",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "单据编号",
          "description": "单据编号"
        },
        {
          "key": "",
          "field": "ProductNames",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品名称",
          "description": "商品名称，比如贴标时，填写商品名称"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流单号",
          "description": "物流单号"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "PackageWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "重量(kg)",
          "description": "重量(kg)"
        },
        {
          "key": "",
          "field": "ComboName",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "套组名称",
          "description": "套组名称"
        },
        {
          "key": "",
          "field": "ComboSKURow",
          "type": "INT",
          "required": "",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "套组行数",
          "description": "套组行数"
        },
        {
          "key": "",
          "field": "ComboSKUQty",
          "type": "INT",
          "required": "",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "套组件数",
          "description": "套组件数"
        }
      ]
    },
    {
      "name": "BillStorageFee",
      "sheet": "CWMACCT",
      "title": "营收账单-商户仓储费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "快照日期",
          "description": "快照日期"
        },
        {
          "key": "",
          "field": "StorageQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓储数量",
          "description": "仓储数量"
        },
        {
          "key": "",
          "field": "StorageFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓储费用",
          "description": "仓储费用"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "BillPOFee",
      "sheet": "CWMACCT",
      "title": "营收账单-商户入库单费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库单号",
          "description": "仓库单号"
        },
        {
          "key": "",
          "field": "POID",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "入库单号",
          "description": "PO入库单号,来源于商户方唯一的ID号"
        },
        {
          "key": "",
          "field": "POType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "Y",
          "title": "入库类型",
          "description": "入库类型"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "完成时间",
          "description": "完成时间"
        },
        {
          "key": "",
          "field": "TotalRowQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总行数",
          "description": "总行数"
        },
        {
          "key": "",
          "field": "TotalItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总件数",
          "description": "总件数"
        },
        {
          "key": "",
          "field": "UnloadCommonQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "普通卸货数量",
          "description": "普通卸货数量"
        },
        {
          "key": "",
          "field": "UnloadHeavyQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "重货卸货数量",
          "description": "重货卸货数量"
        },
        {
          "key": "",
          "field": "UnloadCommonPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "卸货普通价格",
          "description": "普通卸货价格"
        },
        {
          "key": "",
          "field": "UnloadHeavyPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "卸货重货价格",
          "description": "重货卸货价格"
        },
        {
          "key": "",
          "field": "WorkPalletQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架托数",
          "description": "上架托数"
        },
        {
          "key": "",
          "field": "WorkBoxQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架箱数",
          "description": "上架箱数"
        },
        {
          "key": "",
          "field": "WorkPieceQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架件数",
          "description": "上架件数"
        },
        {
          "key": "",
          "field": "WorkCubeQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架方数",
          "description": "上架方数"
        },
        {
          "key": "",
          "field": "WorkCheckQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "质检数量",
          "description": "质检数量"
        },
        {
          "key": "",
          "field": "WorkLabelQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "贴标数量",
          "description": "贴标数量"
        },
        {
          "key": "",
          "field": "WorkPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每托单价",
          "description": "上架每托单价"
        },
        {
          "key": "",
          "field": "WorkBoxPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每箱单价",
          "description": "上架每箱单价"
        },
        {
          "key": "",
          "field": "WorkPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每件单价",
          "description": "上架每件单价"
        },
        {
          "key": "",
          "field": "WorkCubePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每方单价",
          "description": "上架每方单价"
        },
        {
          "key": "",
          "field": "WorkCheckPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "质检单价",
          "description": "质检单价"
        },
        {
          "key": "",
          "field": "WorkLabelPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "贴标单价",
          "description": "贴标单价"
        },
        {
          "key": "",
          "field": "BaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "MinFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最低收费",
          "description": "最低收费，如果大于0则表示有最低收费"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "Expand1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展1",
          "description": "拓展1"
        },
        {
          "key": "",
          "field": "Expand2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展2",
          "description": "拓展2"
        },
        {
          "key": "",
          "field": "Expand3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展3",
          "description": "拓展3"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "BillSOFee",
      "sheet": "CWMACCT",
      "title": "营收账单-商户订单出库费用，含运费，作业费，包材费等",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "仓库单号",
          "description": "仓库单号"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "包裹编号",
          "description": "包裹编号"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号，来源于外部ID"
        },
        {
          "key": "",
          "field": "SORelCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "平台单号",
          "description": "平台单号"
        },
        {
          "key": "",
          "field": "ItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "ItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID",
          "description": "电商平台ID,冗余"
        },
        {
          "key": "",
          "field": "ThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称，冗余显示用"
        },
        {
          "key": "",
          "field": "SODate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单时间",
          "description": "订单时间"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间，即订单的回传时间"
        },
        {
          "key": "",
          "field": "ShipCollectedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "揽收时间",
          "description": "揽收时间"
        },
        {
          "key": "",
          "field": "SOSSKey",
          "type": "Varchar(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单结构Key",
          "description": "订单结构Key，取至SOMaster中的SameStructureKey"
        },
        {
          "key": "",
          "field": "SOSSKeyName",
          "type": "Varchar(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单结构名称",
          "description": "订单结构名称，取至SOMaster中的SameStructureName"
        },
        {
          "key": "",
          "field": "BrandName",
          "type": "Varchar(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "品牌",
          "description": "品牌"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区",
          "description": "区"
        },
        {
          "key": "",
          "field": "ItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹商品行数",
          "description": "包裹商品行数"
        },
        {
          "key": "",
          "field": "ItemsQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹商品件数",
          "description": "包裹商品件数"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "包裹包材ID",
          "description": "包裹实际包材ID，即包材条码"
        },
        {
          "key": "",
          "field": "PackageBoxName",
          "type": "VARCHAR(80)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包裹包材名称",
          "description": "包裹实际包材名称"
        },
        {
          "key": "",
          "field": "PackageWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量",
          "description": "包裹重量，作为生成账单时的参考"
        },
        {
          "key": "",
          "field": "PackageShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量运费",
          "description": "包裹重量运费"
        },
        {
          "key": "",
          "field": "TheoryWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹理论重量",
          "description": "包裹理论重量"
        },
        {
          "key": "",
          "field": "TheoryShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "理论重量运费",
          "description": "理论重量运费"
        },
        {
          "key": "",
          "field": "BillWeight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单重量（回传重量）",
          "description": "账单重量（回传重量）"
        },
        {
          "key": "",
          "field": "BillShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "账单重量回运费",
          "description": "账单重量回运费"
        },
        {
          "key": "",
          "field": "VolWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "体积重量",
          "description": "体积重量"
        },
        {
          "key": "",
          "field": "VolShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "体积运费",
          "description": "体积运费"
        },
        {
          "key": "",
          "field": "CalcWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "结算重量",
          "description": "结算重量"
        },
        {
          "key": "",
          "field": "CalcShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "结算运费",
          "description": "结算运费"
        },
        {
          "key": "",
          "field": "BillShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单物流ID",
          "description": "账单物流ID"
        },
        {
          "key": "",
          "field": "BillShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单物流名称",
          "description": "账单物流名称"
        },
        {
          "key": "",
          "field": "BillPackageBoxID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "计费包材ID",
          "description": "计费包材ID，即包材条码"
        },
        {
          "key": "",
          "field": "BillPackageBoxName",
          "type": "VARCHAR(80)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "计费包材名称",
          "description": "计费包材名称"
        },
        {
          "key": "",
          "field": "BillPackingFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包材费用",
          "description": "包材费用"
        },
        {
          "key": "",
          "field": "BillPackageLength",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计费包裹长",
          "description": "计费包裹长cm"
        },
        {
          "key": "",
          "field": "BillPackageWidth",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计费包裹宽",
          "description": "计费包裹宽cm"
        },
        {
          "key": "",
          "field": "BillPackageHeight",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "计费包裹高",
          "description": "计费包裹高cm"
        },
        {
          "key": "",
          "field": "WorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "作业费",
          "description": "作业费"
        },
        {
          "key": "",
          "field": "BaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "OverQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件数量",
          "description": "超件数量"
        },
        {
          "key": "",
          "field": "OverWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件费",
          "description": "超件费"
        },
        {
          "key": "",
          "field": "IceBagID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "冰袋ID",
          "description": "冰袋ID，即冰袋BarCode"
        },
        {
          "key": "",
          "field": "IceBagQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "冰袋数量",
          "description": "冰袋数量"
        },
        {
          "key": "",
          "field": "IceBagFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "冰袋费用",
          "description": "冰袋费用"
        },
        {
          "key": "",
          "field": "DryIceID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "干冰ID",
          "description": "干冰ID，即冰袋BarCode"
        },
        {
          "key": "",
          "field": "DyyIceQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "干冰数量",
          "description": "干冰数量"
        },
        {
          "key": "",
          "field": "DyyIceFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "干冰费用",
          "description": "干冰费用"
        },
        {
          "key": "",
          "field": "ThermosBagID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "保温袋ID",
          "description": "保温袋ID"
        },
        {
          "key": "",
          "field": "ThermosBagQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保温袋数量",
          "description": "保温袋数量"
        },
        {
          "key": "",
          "field": "ThermosBagFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保温袋费用",
          "description": "保温袋费用"
        },
        {
          "key": "",
          "field": "CM1Name",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "耗材1名称",
          "description": "耗材1名称"
        },
        {
          "key": "",
          "field": "CM1Qty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材1数量",
          "description": "耗材1数量"
        },
        {
          "key": "",
          "field": "CM1Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材1费用",
          "description": "耗材1费用"
        },
        {
          "key": "",
          "field": "CM2Name",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "耗材2名称",
          "description": "耗材2名称"
        },
        {
          "key": "",
          "field": "CM2Qty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材2数量",
          "description": "耗材2数量"
        },
        {
          "key": "",
          "field": "CM2Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材2费用",
          "description": "耗材2费用"
        },
        {
          "key": "",
          "field": "CM3Name",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "耗材3名称",
          "description": "耗材3名称"
        },
        {
          "key": "",
          "field": "CM3Qty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材3数量",
          "description": "耗材3数量"
        },
        {
          "key": "",
          "field": "CM3Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材3费用",
          "description": "耗材3费用"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "Expand1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展1",
          "description": "拓展1"
        },
        {
          "key": "",
          "field": "Expand2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展2",
          "description": "拓展2"
        },
        {
          "key": "",
          "field": "Expand3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展3",
          "description": "拓展3"
        },
        {
          "key": "",
          "field": "Expand4",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展4",
          "description": "拓展4"
        },
        {
          "key": "",
          "field": "Expand5",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展5",
          "description": "拓展5"
        },
        {
          "key": "",
          "field": "Expand6",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展6",
          "description": "拓展6"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "BillSOInterceptFee",
      "sheet": "CWMACCT",
      "title": "营收账单-商户订单拦截费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "仓库单号",
          "description": "仓库单号"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "包裹编号",
          "description": "包裹编号"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号，来源于外部ID"
        },
        {
          "key": "",
          "field": "SORelCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "平台单号",
          "description": "平台单号"
        },
        {
          "key": "",
          "field": "ItemRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "ItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID",
          "description": "电商平台ID,冗余"
        },
        {
          "key": "",
          "field": "ThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称，冗余显示用"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "InterceptDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "拦截时间",
          "description": "拦截时间"
        },
        {
          "key": "",
          "field": "InterceptSOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拦截时订单状态",
          "description": "拦截时订单状态"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "WorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截处理费",
          "description": "拦截处理费"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "Expand1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展1",
          "description": "拓展1"
        },
        {
          "key": "",
          "field": "Expand2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展2",
          "description": "拓展2"
        },
        {
          "key": "",
          "field": "Expand3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展3",
          "description": "拓展3"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "BillBOFee",
      "sheet": "CWMACCT",
      "title": "营收账单-商户BO单相关费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "仓库单号",
          "description": "仓库单号"
        },
        {
          "key": "",
          "field": "BOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "出库单号",
          "description": "出库单号"
        },
        {
          "key": "",
          "field": "BOType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=SalesOutStock=发货出库,\n2=ManufactOutStock=生产出库,\n3=TransferOutStock=库内调拨,\n9=OtherOutStock=其它出库,\n10=OnlyGetWaybillNumber=只取运单",
          "need_index": "Y",
          "title": "批量单类型",
          "description": "批量单类型，1=正常批量出库，2=商户发出需要生产（如拆套）的出库，3=仓库间调拨出库，9=其它未归类"
        },
        {
          "key": "",
          "field": "BOTypeStr",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "批量单类型",
          "description": "批量单类型"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区",
          "description": "区"
        },
        {
          "key": "",
          "field": "ReceiveAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地址",
          "description": "收货地址"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间，即订单的回传时间"
        },
        {
          "key": "",
          "field": "TotalRowQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总行数",
          "description": "总行数"
        },
        {
          "key": "",
          "field": "TotalItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总件数",
          "description": "总件数"
        },
        {
          "key": "",
          "field": "WorkPalletQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发货托数",
          "description": "发货托数"
        },
        {
          "key": "",
          "field": "WorkBoxQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发货箱数",
          "description": "发货箱数"
        },
        {
          "key": "",
          "field": "WorkPieceQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发货件数",
          "description": "发货件数"
        },
        {
          "key": "",
          "field": "WorkCubeQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发货方数",
          "description": "发货方数"
        },
        {
          "key": "",
          "field": "WorkPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每托发货价格",
          "description": "每托发货价格"
        },
        {
          "key": "",
          "field": "WorkBoxPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每箱发货价格",
          "description": "每箱发货价格"
        },
        {
          "key": "",
          "field": "WorkPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "散件发货价格",
          "description": "散件发货价格"
        },
        {
          "key": "",
          "field": "WorkCubePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每方发货价格",
          "description": "每方发货价格"
        },
        {
          "key": "",
          "field": "PalletQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托盘数量",
          "description": "托盘数量"
        },
        {
          "key": "",
          "field": "PalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托盘单价",
          "description": "托盘单价"
        },
        {
          "key": "",
          "field": "WaybillNumbers",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递单号",
          "description": "快递单号，多个用逗号分隔"
        },
        {
          "key": "",
          "field": "BOWeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总重量",
          "description": "总重量"
        },
        {
          "key": "",
          "field": "ShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运费",
          "description": "运费"
        },
        {
          "key": "",
          "field": "WorkLabelQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱唛贴标数量",
          "description": "箱唛贴标数量"
        },
        {
          "key": "",
          "field": "WorkLabelPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱唛贴标单价",
          "description": "箱唛贴标单价"
        },
        {
          "key": "",
          "field": "BaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "Expand1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展1",
          "description": "拓展1"
        },
        {
          "key": "",
          "field": "Expand2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展2",
          "description": "拓展2"
        },
        {
          "key": "",
          "field": "Expand3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展3",
          "description": "拓展3"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "BillRMFee",
      "sheet": "CWMACCT",
      "title": "营收账单-商户销退费用，含运费，作业费等",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "BillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原仓库单号",
          "description": "原仓库单号"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原包裹编号",
          "description": "原包裹编号"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原订单编号",
          "description": "原订单编号"
        },
        {
          "key": "",
          "field": "SORelCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原平台单号",
          "description": "原平台单号"
        },
        {
          "key": "",
          "field": "SOItemRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单商品行数",
          "description": "原单商品行数"
        },
        {
          "key": "",
          "field": "SOItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单商品件数",
          "description": "原单商品件数"
        },
        {
          "key": "",
          "field": "SOThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单电商平台",
          "description": "原单电商平台"
        },
        {
          "key": "",
          "field": "SOThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单店铺名称",
          "description": "原单店铺名称"
        },
        {
          "key": "",
          "field": "SOConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原单出库时间",
          "description": "原单出库时间"
        },
        {
          "key": "",
          "field": "SOProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单省",
          "description": "原单省"
        },
        {
          "key": "",
          "field": "SOCityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单市",
          "description": "原单市"
        },
        {
          "key": "",
          "field": "SODistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单区",
          "description": "原单区"
        },
        {
          "key": "",
          "field": "SOShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原单物流ID",
          "description": "原单物流ID"
        },
        {
          "key": "",
          "field": "SOShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单物流名称",
          "description": "原单物流名称"
        },
        {
          "key": "",
          "field": "SOWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原单运单号",
          "description": "原单运单号"
        },
        {
          "key": "",
          "field": "SOBillWeight",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "原单计费重量",
          "description": "原单计费重量"
        },
        {
          "key": "",
          "field": "SOShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "原单运费",
          "description": "原单运费"
        },
        {
          "key": "",
          "field": "RMRSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "退货登记单号",
          "description": "退货登记单号"
        },
        {
          "key": "",
          "field": "RMID",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "退货单ID",
          "description": "退货单ID,同一包裹多个退货单合并"
        },
        {
          "key": "",
          "field": "ReturnWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货运单号",
          "description": "退货运单号"
        },
        {
          "key": "",
          "field": "RecAvailableQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货良品",
          "description": "退货良品"
        },
        {
          "key": "",
          "field": "RecImperfectQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货次品",
          "description": "退货次品"
        },
        {
          "key": "",
          "field": "ROWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货返作业费",
          "description": "退货返作业费"
        },
        {
          "key": "",
          "field": "ReturnShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货运费",
          "description": "退货运费"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "完成时间",
          "description": "完成时间"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "Expand1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展1",
          "description": "拓展1"
        },
        {
          "key": "",
          "field": "Expand2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展2",
          "description": "拓展2"
        },
        {
          "key": "",
          "field": "Expand3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展3",
          "description": "拓展3"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RBM",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型Revenue Bill Model",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=WHSVendorBill=仓库客户营收",
          "need_index": "Y",
          "title": "账单类型",
          "description": "账单类型"
        },
        {
          "key": "",
          "field": "ModelName",
          "type": "VARCHAR(80)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模型名称",
          "description": "模型名称"
        },
        {
          "key": "",
          "field": "ModelDesc",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模型描述",
          "description": "模型描述"
        },
        {
          "key": "",
          "field": "BillStartDay",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单起始日",
          "description": "账单起始日，从00:00:00.000起；以15号为基准。"
        },
        {
          "key": "",
          "field": "ExecMode",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=TimeEndFullExec=全量运行,\n1=EveryDayIncrementExec=增量运行",
          "need_index": "",
          "title": "运行模式",
          "description": "运行模式：如果是增量运行，那么以截止今日0点前的数据为基准。"
        },
        {
          "key": "",
          "field": "BillExcelTemplate",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "模板名称",
          "description": "账单模板名称"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "通用状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMVendorCfg",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型对应哪些货主",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "货主编号",
          "description": "货主编号"
        },
        {
          "key": "",
          "field": "VendorName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "货主名称",
          "description": "货主名称"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "公司编号",
          "description": "公司编号"
        },
        {
          "key": "",
          "field": "CompanyName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "公司名称",
          "description": "公司名称，账单对应的业务开票公司"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RBMCfgPeroid",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型对应时段关系表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型起始日期",
          "description": "模型起始日期"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型截止日期",
          "description": "模型截止日期"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMCfg_Storage",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中的Storage仓储费配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPeroidCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型时段编号",
          "description": "模型时段编号"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "StorageFeeMode",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=AllFree=仓储全免,\n1=FullCalc=标准计费模式, \n2=FreqDeduction=频效抵扣模式,\n3=SectionFreqPrice=分段频效价格模式,\n4=ByFix=基于固定数值",
          "need_index": "",
          "title": "计费模式",
          "description": "计费模式，每种RBM选择唯一。\n1.标准计费：基于计数单位，(数量-直免)*(1+公摊)*价格 \n2.频效抵扣：(基于计数单位的月总数量*(1+公摊)-月总单量/频效比)*对应计数单位价格-直免*价格\n3.分段频效价格：先计算本月频效比，找到匹配频效比记录，采用标准计费模式计算"
        },
        {
          "key": "",
          "field": "CalcUnitSource",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=ByProduct=基于商品计数,\n2=ByCell=基于库位计数",
          "need_index": "",
          "title": "计数依据",
          "description": "计数依据"
        },
        {
          "key": "",
          "field": "StorageCalcUnit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=ByPallet=基于托,\n2=ByBox=基于箱,\n3=ByPiece=基于件,\n5=ByArea=基于面积",
          "need_index": "",
          "title": "计数单位",
          "description": "计数单位，每种RBM选择唯一。"
        },
        {
          "key": "",
          "field": "TemperatureStatiscType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "0=ByStorageTemperature=基于库位温区,\n1=ByProdTemperature=基于商品温区",
          "need_index": "",
          "title": "温区计量方式",
          "description": "温区计量方式"
        },
        {
          "key": "",
          "field": "DirectFreeQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "直免数量",
          "description": "直免数量"
        },
        {
          "key": "",
          "field": "FreqRatio",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "频效比",
          "description": "频效比"
        },
        {
          "key": "",
          "field": "InvPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "按托价格",
          "description": "按托价格"
        },
        {
          "key": "",
          "field": "InvBoxPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "按箱价格",
          "description": "按箱价格"
        },
        {
          "key": "",
          "field": "InvPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "按件价格",
          "description": "按件价格"
        },
        {
          "key": "",
          "field": "InvAreaPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "面积价格",
          "description": "面积价格"
        },
        {
          "key": "",
          "field": "FixStorageQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "固定仓储数量",
          "description": "固定仓储数量"
        },
        {
          "key": "",
          "field": "FixStoragePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "固定仓储价格",
          "description": "固定仓储价格"
        },
        {
          "key": "",
          "field": "MinFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最低收费",
          "description": "最低收费，如果大于0则表示有最低收费"
        },
        {
          "key": "",
          "field": "SharingRatio",
          "type": "DECIMAL(3, 2)",
          "required": "NOT NULL",
          "default": "0.2",
          "remark": "",
          "need_index": "",
          "title": "公摊比例",
          "description": "公摊比例，默认20%"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMCfg_PO",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中的PO入库服务费配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPeroidCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型时段编号",
          "description": "模型时段编号"
        },
        {
          "key": "",
          "field": "POCalcUnit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=ByPallet=基于托,\n2=ByBox=基于箱,\n3=ByPiece=基于件,\n4=ByPBP=托箱件分项计算,\n5=ByVolume=基于体积",
          "need_index": "",
          "title": "计数单位",
          "description": "计数单位"
        },
        {
          "key": "",
          "field": "UnloadCommonPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "卸货普通价格",
          "description": "普通卸货价格"
        },
        {
          "key": "",
          "field": "UnloadHeavyPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "卸货重货价格",
          "description": "重货卸货价格"
        },
        {
          "key": "",
          "field": "UnloadHeavyDensity",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0.6",
          "remark": "",
          "need_index": "",
          "title": "卸货重货密度",
          "description": "重货最小密度，商品每箱重量除以体积得到密度，大于最小密度为重货，否则为普通货"
        },
        {
          "key": "",
          "field": "WorkPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每托单价",
          "description": "上架每托单价"
        },
        {
          "key": "",
          "field": "WorkBoxPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每箱单价",
          "description": "上架每箱单价"
        },
        {
          "key": "",
          "field": "WorkPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每件单价",
          "description": "上架每件单价"
        },
        {
          "key": "",
          "field": "WorkCubePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每方单价",
          "description": "上架每方单价"
        },
        {
          "key": "",
          "field": "WorkCheckPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品质检单价",
          "description": "商品质检单价"
        },
        {
          "key": "",
          "field": "WorkLabelPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品贴标单价",
          "description": "商品贴标单价"
        },
        {
          "key": "",
          "field": "BaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "MinFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最低收费",
          "description": "最低收费，如果大于0则表示有最低收费"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMCfg_SO",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中的SO订单服务费配置，这里只是订单库内费用，不含运费",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPeroidCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型时段编号",
          "description": "模型时段编号"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOFeeMode",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Standard=标准分项计费,\n1=UnifyBySection=分段统包计费,\n9=SpecialCalc=特殊计费",
          "need_index": "",
          "title": "计费模式",
          "description": "计费模式，对于9=特殊计费，预留接口，暂不提供具体实现"
        },
        {
          "key": "",
          "field": "StdBaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "StdBaseRowLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础行数限制",
          "description": "基础行数限制"
        },
        {
          "key": "",
          "field": "StdBasePieceLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础件数限制",
          "description": "基础件数限制"
        },
        {
          "key": "",
          "field": "StdOverRowPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超行每行加收",
          "description": "超行每行加收"
        },
        {
          "key": "",
          "field": "StdOverPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件每件加收",
          "description": "超件每件加收"
        },
        {
          "key": "",
          "field": "UnifySectionType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "0=ByPackageWeight=按重量分段,\n1=BySKUPiece=按件数分段",
          "need_index": "",
          "title": "分段类型",
          "description": "采用分段统包时的分段类型"
        },
        {
          "key": "",
          "field": "UnifyBottomLimit",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "分段下限",
          "description": "分段下限，大于方式"
        },
        {
          "key": "",
          "field": "UnifyTopLimit",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "分段上限",
          "description": "分段上限，小于等于方式"
        },
        {
          "key": "",
          "field": "UnifyWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "分段作业费",
          "description": "分段作业费"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMCfg_SOIntercept",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中的SO订单拦截费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPeroidCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型时段编号",
          "description": "模型时段编号"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOFeeMode",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Standard=标准分项计费,\n1=UnifyBySection=分段统包计费,\n9=SpecialCalc=特殊计费",
          "need_index": "",
          "title": "计费模式",
          "description": "计费模式，对于9=特殊计费，预留接口，暂不提供具体实现"
        },
        {
          "key": "",
          "field": "StdBaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截作业费",
          "description": "拦截作业费"
        },
        {
          "key": "",
          "field": "StdBaseRowLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截行数限制",
          "description": "拦截行数限制"
        },
        {
          "key": "",
          "field": "StdBasePieceLimit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截件数限制",
          "description": "拦截件数限制"
        },
        {
          "key": "",
          "field": "StdOverRowPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截超行每行加收",
          "description": "拦截超行每行加收"
        },
        {
          "key": "",
          "field": "StdOverPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截超件每件加收",
          "description": "拦截超件每件加收"
        },
        {
          "key": "",
          "field": "UnifySectionType",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "0=ByPackageWeight=按重量分段,\n1=BySKUPiece=按件数分段",
          "need_index": "",
          "title": "分段类型",
          "description": "采用分段统包时的分段类型"
        },
        {
          "key": "",
          "field": "UnifyMinLimit",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "分段下限",
          "description": "分段下限"
        },
        {
          "key": "",
          "field": "UnifyTopLimit",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "分段上限",
          "description": "分段上限"
        },
        {
          "key": "",
          "field": "UnifyWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "分段作业费",
          "description": "分段作业费"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMCfg_BO",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中的BO单服务费配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPeroidCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型时段编号",
          "description": "模型时段编号"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "BOCalcUnit",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=ByPallet=基于托,\n2=ByBox=基于箱,\n3=ByPiece=基于件,\n4=ByPBP=托箱件分项计算,\n5=ByVolume=基于体积",
          "need_index": "",
          "title": "计数单位",
          "description": "计数单位"
        },
        {
          "key": "",
          "field": "WorkPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每托发货价格",
          "description": "每托发货价格"
        },
        {
          "key": "",
          "field": "WorkBoxPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每箱发货价格",
          "description": "每箱发货价格"
        },
        {
          "key": "",
          "field": "WorkPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "散件发货价格",
          "description": "散件发货价格"
        },
        {
          "key": "",
          "field": "WorkCubePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每方发货价格",
          "description": "每方发货价格"
        },
        {
          "key": "",
          "field": "WorkLabelPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱唛贴标单价",
          "description": "箱唛贴标单价"
        },
        {
          "key": "",
          "field": "PalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托盘单价",
          "description": "托盘单价"
        },
        {
          "key": "",
          "field": "BaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "MinFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最低收费",
          "description": "最低收费，如果大于0则表示有最低收费"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMCfg_RO",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中的RO退货服务费配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPeroidCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型时段编号",
          "description": "模型时段编号"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "ROWorkFeeMode",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=FixWorkFee=固定作业费,\n1=SOWorkFeePercent=原单发货作业费比率",
          "need_index": "",
          "title": "作业计费模式",
          "description": "作业计费模式"
        },
        {
          "key": "",
          "field": "ROFixWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "固定作业费",
          "description": "固定作业费"
        },
        {
          "key": "",
          "field": "ROSOWorkFeePercent",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "原单发货作业比率",
          "description": "原单发货作业费比率"
        },
        {
          "key": "",
          "field": "ROShipFeeMode",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=ShipTypeFixFee=各快递固定运费,\n1=SOShipFeePercent=原包裹运费比率",
          "need_index": "",
          "title": "退货运费模式",
          "description": "退货运费模式"
        },
        {
          "key": "",
          "field": "ROShipTypeFixFeeJson",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "各快递固定费内容",
          "description": "不同快递固定费内容，Json文本结构\n[{\"ShipTypeId\":\"STO\",\"ShipFee\":2.5},\n {\"ShipTypeId\":\"SF\",\"ShipFee\":5.0}]"
        },
        {
          "key": "",
          "field": "ROSOShipFeePercent",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "原包裹运费比率",
          "description": "原包裹运费比率"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注说明",
          "description": "备注说明"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMCfg_PCM",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中的包材价格，数据部分来源于CWMMaster.VendorPCMCfg",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPeroidCfgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型时段编号",
          "description": "模型时段编号"
        },
        {
          "key": "",
          "field": "PCMName",
          "type": "VARCHAR(80)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "材料名称",
          "description": "材料名称,含规格"
        },
        {
          "key": "",
          "field": "BarCode",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "条码",
          "description": "条码"
        },
        {
          "key": "",
          "field": "MaterialType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Packing=包材,\n1=Comsumable=耗材",
          "need_index": "Y",
          "title": "材料类型",
          "description": "材料类型"
        },
        {
          "key": "",
          "field": "Price",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "价格",
          "description": "价格"
        },
        {
          "key": "",
          "field": "Resource",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=FromWMS=WMS中创建,\n2=FromBILL=清分算中创建",
          "need_index": "",
          "title": "数据来源",
          "description": "数据来源"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RBMPCMRule",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中，耗材的使用规则，后续订单特殊计费可参考此设计",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RuleName",
          "type": "VARCHAR(80)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "规则名称",
          "description": "规则名称，默认系统自动生成"
        },
        {
          "key": "",
          "field": "RuleUseType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=IndependRule=独立规则,\n2=PriorityRule=优先规则",
          "need_index": "",
          "title": "规则应用类型",
          "description": "规则应用类型，独立规则：表示此类规则只要满足就采用，加入耗材费用列；优先规则：把所有优先规则的规则按优先级从高到低排序，依次计算，只要满足条件，就只取当前规则结果加入耗材费用列"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "优先级",
          "description": "优先级，数字越大越优先"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "",
          "title": "状态",
          "description": "通用状态"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RBMPCMRuleCate",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中，耗材规则的规则明细分类，如果一条规则需要使用多个明细类型，限定最多同时使用4种类型，作为复合条件",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPCMRuleSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "耗材规则编号",
          "description": "耗材使用规则编号"
        },
        {
          "key": "",
          "field": "PCMRuleItemCate",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=NoCondition=无任何条件,\n1=AssignSKU=指定单项商品,\n2=AssignPackageBox=指定包材,\n3=PackageWeightRegion=重量段范围,\n4=AssignTemperatureType=指定温区类型,\n5=AssignProvince=指定省份",
          "need_index": "Y",
          "title": "规则明细分类",
          "description": "规则明细分类。\n一条耗材规则，可以设置一个或多个明细类型；最多可以同时设置4种条件（条件之间为AND关系）；\n暂不提供多商品范围模式"
        },
        {
          "key": "",
          "field": "LogicalCalc",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=AndLogical=并且关系",
          "need_index": "",
          "title": "逻辑运算关系",
          "description": "逻辑运算关系，预留参考，目前只提供并且关系"
        },
        {
          "key": "",
          "field": "SortNum",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "排列顺序",
          "description": "排列顺序，当多个条件时，关联明细表中对应顺序的字段顺序，从1开始"
        }
      ]
    },
    {
      "name": "RBMPCMRuleItem",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中，耗材的使用规则的具体细项",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPCMRuleSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "耗材规则编号",
          "description": "耗材使用规则编号"
        },
        {
          "key": "",
          "field": "PCMRuleCate1_ItemId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "类型1的主键",
          "description": "类型1的ID或编号，根据具体类型具体处理"
        },
        {
          "key": "",
          "field": "PCMRuleCate1_ItemName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "类型1的名称",
          "description": "类型1的名称"
        },
        {
          "key": "",
          "field": "PCMRuleCate1_ItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "类型1的数量",
          "description": "类型1的数量"
        },
        {
          "key": "",
          "field": "PCMRuleCate1_ItemRangeMin",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "类型1的范围下限",
          "description": "类型1的范围下限"
        },
        {
          "key": "",
          "field": "PCMRuleCate1_ItemRangeMax",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "类型1的范围上限",
          "description": "类型1的范围上限"
        },
        {
          "key": "",
          "field": "PCMRuleCate2_ItemId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "类型2的主键",
          "description": "类型2的ID或编号，根据具体类型具体处理"
        },
        {
          "key": "",
          "field": "PCMRuleCate2_ItemName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "类型2的名称",
          "description": "类型2的名称"
        },
        {
          "key": "",
          "field": "PCMRuleCate2_ItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "类型2的数量",
          "description": "类型2的数量"
        },
        {
          "key": "",
          "field": "PCMRuleCate2_ItemRangeMin",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "类型2的范围下限",
          "description": "类型2的范围下限"
        },
        {
          "key": "",
          "field": "PCMRuleCate2_ItemRangeMax",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "类型2的范围上限",
          "description": "类型2的范围上限"
        },
        {
          "key": "",
          "field": "PCMRuleCate3_ItemId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "类型3的主键",
          "description": "类型3的ID或编号，根据具体类型具体处理"
        },
        {
          "key": "",
          "field": "PCMRuleCate3_ItemName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "类型3的名称",
          "description": "类型3的名称"
        },
        {
          "key": "",
          "field": "PCMRuleCate3_ItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "类型3的数量",
          "description": "类型3的数量"
        },
        {
          "key": "",
          "field": "PCMRuleCate3_ItemRangeMin",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "类型3的范围下限",
          "description": "类型3的范围下限"
        },
        {
          "key": "",
          "field": "PCMRuleCate3_ItemRangeMax",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "类型3的范围上限",
          "description": "类型3的范围上限"
        },
        {
          "key": "",
          "field": "PCMRuleCate4_ItemId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "类型4的主键",
          "description": "类型4的ID或编号，根据具体类型具体处理"
        },
        {
          "key": "",
          "field": "PCMRuleCate4_ItemName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "类型4的名称",
          "description": "类型4的名称"
        },
        {
          "key": "",
          "field": "PCMRuleCate4_ItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "",
          "title": "类型4的数量",
          "description": "类型4的数量"
        },
        {
          "key": "",
          "field": "PCMRuleCate4_ItemRangeMin",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "类型4的范围下限",
          "description": "类型4的范围下限"
        },
        {
          "key": "",
          "field": "PCMRuleCate4_ItemRangeMax",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "类型4的范围上限",
          "description": "类型4的范围上限"
        }
      ]
    },
    {
      "name": "RBMPCMRuleItemResult",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中，耗材的使用规则的具体细项对应的具体结果，即使用什么耗材",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "RBMPCMRuleSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "耗材规则编号",
          "description": "耗材规则编号"
        },
        {
          "key": "",
          "field": "RBMPCMRuleItemSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "耗材规则明细编号",
          "description": "耗材规则明细编号"
        },
        {
          "key": "",
          "field": "PCMBarCode1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材1条码",
          "description": "包耗材1条码"
        },
        {
          "key": "",
          "field": "PCMQty1",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包耗材1数量",
          "description": "包耗材1数量"
        },
        {
          "key": "",
          "field": "PCMBarCode2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材2条码",
          "description": "包耗材2条码"
        },
        {
          "key": "",
          "field": "PCMQty2",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包耗材2数量",
          "description": "包耗材2数量"
        },
        {
          "key": "",
          "field": "PCMBarCode3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "包耗材3条码",
          "description": "包耗材3条码"
        },
        {
          "key": "",
          "field": "PCMQty3",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包耗材3数量",
          "description": "包耗材3数量"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        }
      ]
    },
    {
      "name": "RBMExcelCol",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单模型中，最终生成Excel文件时，需要哪些Sheet，各Sheet需要的哪些字段及列顺序",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型编号"
        },
        {
          "key": "",
          "field": "SheetSort",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "Sheet顺序",
          "description": "Sheet顺序"
        },
        {
          "key": "",
          "field": "SheetName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Sheet名称",
          "description": "Sheet名称"
        },
        {
          "key": "",
          "field": "SheetDataType",
          "type": "INT",
          "required": "0",
          "default": "",
          "remark": "1=StorageFee=仓储服务,\n11=StorageDetail=仓储明细,\n2=POFee=入库服务,\n21=PODetai=入库明细,\n3=SOFee=订单服务,\n31=SODetail=订单明细,\n4=SOIntercept=库内拦截服务,\n41=SOInterceptDetail=库内拦截明细,\n5=BOFee=2B服务,\n51=BODetail=2B明细,\n6=SPOFee=加工单服务,\n61=SPODetail=加工单明细,\n7=ROFee=销退服务,\n71=RODetail=销退明细,\n8=VASFee=增值服务",
          "need_index": "",
          "title": "Sheet数据类型",
          "description": "Sheet数据类型"
        },
        {
          "key": "",
          "field": "SheetColJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "Sheet列头",
          "description": "Sheet列头，格式：[{\"Key\":\"LogDate\",\"Value\":\"日期\"}]"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RevBill",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "BillMonth",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单年月",
          "description": "账单年月：2022-06"
        },
        {
          "key": "",
          "field": "BillName",
          "type": "VARCHAR(300)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "报表名称",
          "description": "报表名称"
        },
        {
          "key": "",
          "field": "DownloadBillFilePath",
          "type": "VARCHAR(500)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "下载文件路径",
          "description": "下载文件路径，生成文件后下载"
        },
        {
          "key": "",
          "field": "UploadBillFilePath",
          "type": "VARCHAR(500)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "上传文件路径",
          "description": "上传文件路径，修改后的文件上传"
        },
        {
          "key": "",
          "field": "BillStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Init=初始态为运行,\n5=PartialBuilded=部分数据生成,\n10=BuildedData=已生成数据,\n30=BuildedFile=已生成文件,\n50=OnConfirming=客户确认中,\n80=Confirmed=客户已确认,\n100=Completed=已结案关闭",
          "need_index": "Y",
          "title": "账单状态",
          "description": "账单状态"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单起始时间",
          "description": "账单起始时间（大于等于0:0:0)"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单截止时间",
          "description": "账单截止时间（小于0:0:0)"
        },
        {
          "key": "",
          "field": "RunStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NotRun=未运行,\n1=Running=运行中,\n-1=Exception=运行异常",
          "need_index": "",
          "title": "服务运行状态",
          "description": "服务运行状态，用于增量云心以及人机交互的提示；如果有异常，就需要清除掉所有已跑的数据重新运行"
        },
        {
          "key": "",
          "field": "RunBizStartTime",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运行服务时的数据起始时间",
          "description": "运行服务时的数据起始时间；创建RevBill时，本字段需要写入值"
        },
        {
          "key": "",
          "field": "RunBizEndTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "运行服务时的数据截止时间",
          "description": "运行服务时的数据截止时间"
        },
        {
          "key": "",
          "field": "RunNodeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前运行名称",
          "description": "当前运行节点名称，用于人机交互的提示"
        },
        {
          "key": "",
          "field": "RunNodeMessage",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "当前节点信息",
          "description": "当前运行节点详细信息，用于人机交互提示"
        },
        {
          "key": "",
          "field": "TotalPOCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总入库单量",
          "description": "总入库单量"
        },
        {
          "key": "",
          "field": "TotalSOCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总订单量",
          "description": "总订单量"
        },
        {
          "key": "",
          "field": "TotalSOInterceptCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总订单拦截数",
          "description": "总订单拦截数"
        },
        {
          "key": "",
          "field": "TotalBOCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总BO单量",
          "description": "总BO单量"
        },
        {
          "key": "",
          "field": "TotalROCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总销退单量",
          "description": "总销退单量"
        },
        {
          "key": "",
          "field": "TotalStorageFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总仓储服务费",
          "description": "总仓储服务费"
        },
        {
          "key": "",
          "field": "TotalPOFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总入库服务费",
          "description": "总入库服务费"
        },
        {
          "key": "",
          "field": "TotalSOFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总订单服务费",
          "description": "总订单服务费"
        },
        {
          "key": "",
          "field": "TotalSOInterceptFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总订单拦截费",
          "description": "总订单拦截费"
        },
        {
          "key": "",
          "field": "TotalBOFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总BO单服务费",
          "description": "总BO单服务费"
        },
        {
          "key": "",
          "field": "TotalROFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总销退服务费",
          "description": "总销退服务费"
        },
        {
          "key": "",
          "field": "TotalVASFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总增值服务费",
          "description": "总增值服务费"
        },
        {
          "key": "",
          "field": "FinalStorageFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最终仓储服务费",
          "description": "最终仓储服务费"
        },
        {
          "key": "",
          "field": "FinalPOFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最终入库服务费",
          "description": "最终入库服务费"
        },
        {
          "key": "",
          "field": "FinalSOFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最终订单服务费",
          "description": "最终订单服务费"
        },
        {
          "key": "",
          "field": "FinalSOInterceptFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最终订单拦截费",
          "description": "最终订单拦截费"
        },
        {
          "key": "",
          "field": "FinalBOFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最终BO单服务费",
          "description": "最终BO单服务费"
        },
        {
          "key": "",
          "field": "FinalROFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最终销退服务费",
          "description": "最终销退服务费"
        },
        {
          "key": "",
          "field": "FinalVASFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最终增值服务费",
          "description": "最终增值服务费"
        },
        {
          "key": "",
          "field": "FinalDeduceFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总扣款金额",
          "description": "总扣款金额，线下填写"
        },
        {
          "key": "",
          "field": "FinalDeduceFeeDesc",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "总扣款金额说明",
          "description": "总扣款金额说明"
        },
        {
          "key": "",
          "field": "FinalOtherFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "其它费用",
          "description": "其它费用，线下填写，可为正负，需说明原因"
        },
        {
          "key": "",
          "field": "FinalOtherFeeDesc",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "其它费用说明",
          "description": "其它费用说明"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计总金额",
          "description": "合计总金额"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(2000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "RevBillCfg",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单主表当时的模型数据",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "RBMSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单模型编号",
          "description": "账单模型系统编号"
        },
        {
          "key": "",
          "field": "StartDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型起始日期",
          "description": "模型起始日期"
        },
        {
          "key": "",
          "field": "EndDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "模型截止日期",
          "description": "模型截止日期"
        },
        {
          "key": "",
          "field": "CfgVendorJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "关联货主信息",
          "description": "关联货主信息"
        },
        {
          "key": "",
          "field": "CfgStorageJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓储配置信息",
          "description": "仓储配置信息"
        },
        {
          "key": "",
          "field": "CfgPOJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "PO配置信息",
          "description": "PO配置信息"
        },
        {
          "key": "",
          "field": "CfgSOJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "SO配置信息",
          "description": "SO配置信息"
        },
        {
          "key": "",
          "field": "CfgSOInterceptJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单拦截配置",
          "description": "订单拦截配置"
        },
        {
          "key": "",
          "field": "CfgBOJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "BO配置信息",
          "description": "BO配置信息"
        },
        {
          "key": "",
          "field": "CfgROJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "RO配置信息",
          "description": "RO配置信息"
        },
        {
          "key": "",
          "field": "CfgPCMJson",
          "type": "TEXT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包耗材价格配置",
          "description": "包耗材价格配置"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(800)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者系统编号",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RevBillStorageFee",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单-商户仓储费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "LogDate",
          "type": "DATE",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "快照日期",
          "description": "快照日期"
        },
        {
          "key": "",
          "field": "InvPalletQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托位总数",
          "description": "托位总数，根据配置中的计算模式计算，如果是只按托，就所有库位都算托；如果分项计算，则只计算托盘库位"
        },
        {
          "key": "",
          "field": "InvBoxQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱位总数",
          "description": "箱位总数，根据配置中的计算模式计算"
        },
        {
          "key": "",
          "field": "InvPieceQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "商品总件数",
          "description": "商品总件数"
        },
        {
          "key": "",
          "field": "InvAreaQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "面积总数",
          "description": "面积总数，笼统计算面积"
        },
        {
          "key": "",
          "field": "InvPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "按托价格",
          "description": "按托价格"
        },
        {
          "key": "",
          "field": "InvBoxPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "按箱价格",
          "description": "按箱价格"
        },
        {
          "key": "",
          "field": "InvPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "按件价格",
          "description": "按件价格"
        },
        {
          "key": "",
          "field": "InvAreaPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "面积价格",
          "description": "面积价格"
        },
        {
          "key": "",
          "field": "SharingRatio",
          "type": "DECIMAL(3, 2)",
          "required": "NOT NULL",
          "default": "0.2",
          "remark": "",
          "need_index": "",
          "title": "公摊比例",
          "description": "公摊比例"
        },
        {
          "key": "",
          "field": "MinFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最低收费",
          "description": "最低收费，如果大于0则表示有最低收费"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RevBillPOFee",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单-商户入库单费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "POSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库单号",
          "description": "仓库单号"
        },
        {
          "key": "",
          "field": "POID",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "入库单号",
          "description": "PO入库单号,来源于商户方唯一的ID号"
        },
        {
          "key": "",
          "field": "POType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "",
          "need_index": "Y",
          "title": "入库类型",
          "description": "入库类型"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "完成时间",
          "description": "完成时间"
        },
        {
          "key": "",
          "field": "TotalRowQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总行数",
          "description": "总行数"
        },
        {
          "key": "",
          "field": "TotalItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总件数",
          "description": "总件数"
        },
        {
          "key": "",
          "field": "UnloadCommonQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "普通卸货数量",
          "description": "普通卸货数量"
        },
        {
          "key": "",
          "field": "UnloadHeavyQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "重货卸货数量",
          "description": "重货卸货数量"
        },
        {
          "key": "",
          "field": "UnloadCommonPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "卸货普通价格",
          "description": "普通卸货价格"
        },
        {
          "key": "",
          "field": "UnloadHeavyPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "卸货重货价格",
          "description": "重货卸货价格"
        },
        {
          "key": "",
          "field": "WorkPalletQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架托数",
          "description": "上架托数"
        },
        {
          "key": "",
          "field": "WorkBoxQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架箱数",
          "description": "上架箱数"
        },
        {
          "key": "",
          "field": "WorkPieceQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架件数",
          "description": "上架件数"
        },
        {
          "key": "",
          "field": "WorkCubeQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架方数",
          "description": "上架方数"
        },
        {
          "key": "",
          "field": "WorkCheckQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "质检数量",
          "description": "质检数量"
        },
        {
          "key": "",
          "field": "WorkLabelQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "贴标数量",
          "description": "贴标数量"
        },
        {
          "key": "",
          "field": "WorkPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每托单价",
          "description": "上架每托单价"
        },
        {
          "key": "",
          "field": "WorkBoxPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每箱单价",
          "description": "上架每箱单价"
        },
        {
          "key": "",
          "field": "WorkPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每件单价",
          "description": "上架每件单价"
        },
        {
          "key": "",
          "field": "WorkCubePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "上架每方单价",
          "description": "上架每方单价"
        },
        {
          "key": "",
          "field": "WorkCheckPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "质检单价",
          "description": "质检单价"
        },
        {
          "key": "",
          "field": "WorkLabelPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "贴标单价",
          "description": "贴标单价"
        },
        {
          "key": "",
          "field": "BaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "MinFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最低收费",
          "description": "最低收费，如果大于0则表示有最低收费"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RevBillSOFee",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单-商户订单出库费用，含运费，作业费，包材费等",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "BIGINT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=B2COrder=2C订单,\n2=B2BOrder=2B订单,\n9=OtherOrder=其它订单",
          "need_index": "Y",
          "title": "订单类型",
          "description": "订单类型"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "BIGINT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "仓库单号",
          "description": "仓库单号"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "BIGINT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "包裹编号",
          "description": "包裹编号"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号，来源于外部ID"
        },
        {
          "key": "",
          "field": "SOCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "平台单号",
          "description": "平台单号"
        },
        {
          "key": "",
          "field": "ItemsRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "ItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID",
          "description": "电商平台ID,冗余"
        },
        {
          "key": "",
          "field": "ECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称，冗余显示用"
        },
        {
          "key": "",
          "field": "SODate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单时间",
          "description": "订单时间"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间，即订单的回传时间"
        },
        {
          "key": "",
          "field": "ShipCollectedDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "揽收时间",
          "description": "揽收时间"
        },
        {
          "key": "",
          "field": "SOSSKey",
          "type": "Varchar(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "订单结构Key",
          "description": "订单结构Key，取至SOMaster中的SameStructureKey"
        },
        {
          "key": "",
          "field": "SameStructureName",
          "type": "Varchar(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "同构订单名称",
          "description": "同构订单名称"
        },
        {
          "key": "",
          "field": "BrandName",
          "type": "Varchar(80)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "品牌",
          "description": "品牌"
        },
        {
          "key": "",
          "field": "OriginShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原始物流ID",
          "description": "原始物流ID"
        },
        {
          "key": "",
          "field": "OriginShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原始物流名称",
          "description": "原始物流名称"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "实发物流ID",
          "description": "实发物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "实发物流名称",
          "description": "实发物流名称"
        },
        {
          "key": "",
          "field": "BillShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单物流ID",
          "description": "账单物流ID"
        },
        {
          "key": "",
          "field": "BillShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单物流名称",
          "description": "账单物流名称"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "PackageBoxID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "包裹包材ID",
          "description": "包裹实际包材ID，即包材条码"
        },
        {
          "key": "",
          "field": "PackageBoxName",
          "type": "VARCHAR(80)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "包裹包材名称",
          "description": "包裹实际包材名称"
        },
        {
          "key": "",
          "field": "PackageLength",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹长",
          "description": "包裹长cm"
        },
        {
          "key": "",
          "field": "PackageWidth",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹宽",
          "description": "包裹宽cm"
        },
        {
          "key": "",
          "field": "PackageHeight",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹高",
          "description": "包裹高cm"
        },
        {
          "key": "",
          "field": "PackageWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量",
          "description": "包裹重量，作为生成账单时的参考"
        },
        {
          "key": "",
          "field": "PackageShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "包裹重量运费",
          "description": "包裹重量运费"
        },
        {
          "key": "",
          "field": "PackageVolWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "体积重量",
          "description": "体积重量，作为生成账单时的参考"
        },
        {
          "key": "",
          "field": "PackageVolShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "体积重量运费",
          "description": "体积重量运费"
        },
        {
          "key": "",
          "field": "TheoryWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "理论重量",
          "description": "理论重量，作为生成账单时的参考"
        },
        {
          "key": "",
          "field": "TheoryShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "理论重量运费",
          "description": "理论重量运费"
        },
        {
          "key": "",
          "field": "ConfirmWeight",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回传重量",
          "description": "回传重量，作为生成账单时的参考"
        },
        {
          "key": "",
          "field": "ConfirmShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "回传重量运费",
          "description": "回传重量运费"
        },
        {
          "key": "",
          "field": "BillPackageBoxID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "",
          "title": "账单包材ID",
          "description": "账单包材ID"
        },
        {
          "key": "",
          "field": "BillPackageBoxName",
          "type": "VARCHAR(80)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单包材名称",
          "description": "账单包材名称"
        },
        {
          "key": "",
          "field": "BillPackageLength",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "账单包裹长",
          "description": "账单包裹长"
        },
        {
          "key": "",
          "field": "BillPackageWidth",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "账单包裹宽",
          "description": "账单包裹宽"
        },
        {
          "key": "",
          "field": "BillPackageHeight",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "账单包裹高",
          "description": "账单包裹高"
        },
        {
          "key": "",
          "field": "BillPackageBoxFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "账单包材费",
          "description": "账单包材费"
        },
        {
          "key": "",
          "field": "BillWeight",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "账单重量",
          "description": "账单重量"
        },
        {
          "key": "",
          "field": "BillShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "账单运费",
          "description": "账单运费"
        },
        {
          "key": "",
          "field": "WorkBaseFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "OverQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件数量",
          "description": "超件数量"
        },
        {
          "key": "",
          "field": "OverWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "超件费",
          "description": "超件费"
        },
        {
          "key": "",
          "field": "WorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "账单作业费",
          "description": "账单作业费"
        },
        {
          "key": "",
          "field": "IceBagQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "冰袋数量",
          "description": "冰袋数量"
        },
        {
          "key": "",
          "field": "IceBagFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "冰袋费用",
          "description": "冰袋费用"
        },
        {
          "key": "",
          "field": "DyyIceQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "干冰数量",
          "description": "干冰数量"
        },
        {
          "key": "",
          "field": "DyyIceFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "干冰费用",
          "description": "干冰费用"
        },
        {
          "key": "",
          "field": "ThermosBagName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "保温袋名字",
          "description": "保温袋名字"
        },
        {
          "key": "",
          "field": "ThermosBagQty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保温袋数量",
          "description": "保温袋数量"
        },
        {
          "key": "",
          "field": "ThermosBagFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "保温袋费用",
          "description": "保温袋费用"
        },
        {
          "key": "",
          "field": "CM1Name",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "耗材1名称",
          "description": "耗材1名称"
        },
        {
          "key": "",
          "field": "CM1Qty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材1数量",
          "description": "耗材1数量"
        },
        {
          "key": "",
          "field": "CM1Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材1费用",
          "description": "耗材1费用"
        },
        {
          "key": "",
          "field": "CM2Name",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "耗材2名称",
          "description": "耗材2名称"
        },
        {
          "key": "",
          "field": "CM2Qty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材2数量",
          "description": "耗材2数量"
        },
        {
          "key": "",
          "field": "CM2Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材2费用",
          "description": "耗材2费用"
        },
        {
          "key": "",
          "field": "CM3Name",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "耗材3名称",
          "description": "耗材3名称"
        },
        {
          "key": "",
          "field": "CM3Qty",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材3数量",
          "description": "耗材3数量"
        },
        {
          "key": "",
          "field": "CM3Fee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "耗材3费用",
          "description": "耗材3费用"
        },
        {
          "key": "",
          "field": "BatchSOFlag",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=NoNeed=不需要,\n1=BatchSO=批量单,\n2=NotBatchSO=杂单",
          "need_index": "",
          "title": "批量单标识",
          "description": "批量单标识"
        },
        {
          "key": "",
          "field": "Expand1",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展1",
          "description": "拓展1"
        },
        {
          "key": "",
          "field": "Expand2",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展2",
          "description": "拓展2"
        },
        {
          "key": "",
          "field": "Expand3",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展3",
          "description": "拓展3"
        },
        {
          "key": "",
          "field": "Expand4",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展4",
          "description": "拓展4"
        },
        {
          "key": "",
          "field": "Expand5",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拓展5",
          "description": "拓展5"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RevBillSOInterceptFee",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单-商户订单拦截费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "仓库单号",
          "description": "仓库单号"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "包裹编号",
          "description": "包裹编号"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "订单编号",
          "description": "订单编号，来源于外部ID"
        },
        {
          "key": "",
          "field": "SORelCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "平台单号",
          "description": "平台单号"
        },
        {
          "key": "",
          "field": "ItemRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品行数",
          "description": "商品行数"
        },
        {
          "key": "",
          "field": "ItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商品件数",
          "description": "商品件数"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：WMS=云仓WMS,OpenAPI=云仓API,QiMen=奇门"
        },
        {
          "key": "",
          "field": "ThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "电商平台ID",
          "description": "电商平台ID,冗余"
        },
        {
          "key": "",
          "field": "ThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "店铺名称",
          "description": "店铺名称，冗余显示用"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "InterceptDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "拦截时间",
          "description": "拦截时间"
        },
        {
          "key": "",
          "field": "InterceptSOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "拦截时订单状态",
          "description": "拦截时订单状态"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "运单号",
          "description": "运单号"
        },
        {
          "key": "",
          "field": "WorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "拦截处理费",
          "description": "拦截处理费"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RevBillBOFee",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单-商户BO单相关费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "BOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "仓库单号",
          "description": "仓库单号"
        },
        {
          "key": "",
          "field": "BOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "出库单号",
          "description": "出库单号"
        },
        {
          "key": "",
          "field": "BOType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "1=SalesOutStock=发货出库,\n2=ManufactOutStock=生产出库,\n3=TransferOutStock=库内调拨,\n9=OtherOutStock=其它出库,\n10=OnlyGetWaybillNumber=只取运单",
          "need_index": "Y",
          "title": "批量单类型",
          "description": "批量单类型，1=正常批量出库，2=商户发出需要生产（如拆套）的出库，3=仓库间调拨出库，9=其它未归类"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "DistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "区",
          "description": "区"
        },
        {
          "key": "",
          "field": "ReceiveAddress",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "收货地址",
          "description": "收货地址"
        },
        {
          "key": "",
          "field": "ToWMSDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "到库时间",
          "description": "到库时间"
        },
        {
          "key": "",
          "field": "ConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "出库时间",
          "description": "出库时间，即订单的回传时间"
        },
        {
          "key": "",
          "field": "TotalRowQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总行数",
          "description": "总行数"
        },
        {
          "key": "",
          "field": "TotalItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总件数",
          "description": "总件数"
        },
        {
          "key": "",
          "field": "WorkPalletQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发货托数",
          "description": "发货托数"
        },
        {
          "key": "",
          "field": "WorkBoxQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发货箱数",
          "description": "发货箱数"
        },
        {
          "key": "",
          "field": "WorkPieceQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发货件数",
          "description": "发货件数"
        },
        {
          "key": "",
          "field": "WorkCubeQty",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "发货方数",
          "description": "发货方数"
        },
        {
          "key": "",
          "field": "WorkPalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每托发货价格",
          "description": "每托发货价格"
        },
        {
          "key": "",
          "field": "WorkBoxPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每箱发货价格",
          "description": "每箱发货价格"
        },
        {
          "key": "",
          "field": "WorkPiecePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "散件发货价格",
          "description": "散件发货价格"
        },
        {
          "key": "",
          "field": "WorkCubePrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "每方发货价格",
          "description": "每方发货价格"
        },
        {
          "key": "",
          "field": "PalletQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托盘数量",
          "description": "托盘数量"
        },
        {
          "key": "",
          "field": "PalletPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "托盘单价",
          "description": "托盘单价"
        },
        {
          "key": "",
          "field": "WaybillNumbers",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递单号",
          "description": "快递单号，多个用逗号分隔"
        },
        {
          "key": "",
          "field": "BOWeight",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "总重量",
          "description": "总重量"
        },
        {
          "key": "",
          "field": "ShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "运费",
          "description": "运费"
        },
        {
          "key": "",
          "field": "WorkLabelQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱唛贴标数量",
          "description": "箱唛贴标数量"
        },
        {
          "key": "",
          "field": "WorkLabelPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "箱唛贴标单价",
          "description": "箱唛贴标单价"
        },
        {
          "key": "",
          "field": "BaseWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "基础作业费",
          "description": "基础作业费"
        },
        {
          "key": "",
          "field": "MinFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "最低收费",
          "description": "最低收费，如果大于0则表示有最低收费"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RevBillROFee",
      "sheet": "CWMBILL(仅供参考)",
      "title": "营收账单-商户销退费用，含运费，作业费等",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "TemperatureType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=Normal=常温,\n1=Constant=恒温,\n2=Cool=冷藏,\n3=Freeze=冷冻",
          "need_index": "Y",
          "title": "温区类型",
          "description": "温区类型"
        },
        {
          "key": "",
          "field": "SOSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原仓库单号",
          "description": "原仓库单号"
        },
        {
          "key": "",
          "field": "SOPSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "原包裹编号",
          "description": "原包裹编号"
        },
        {
          "key": "",
          "field": "SOID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原订单编号",
          "description": "原订单编号"
        },
        {
          "key": "",
          "field": "SORelCode",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原平台单号",
          "description": "原平台单号"
        },
        {
          "key": "",
          "field": "SOItemRowCount",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单商品行数",
          "description": "原单商品行数"
        },
        {
          "key": "",
          "field": "SOItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单商品件数",
          "description": "原单商品件数"
        },
        {
          "key": "",
          "field": "SOThirdECID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单电商平台",
          "description": "原单电商平台"
        },
        {
          "key": "",
          "field": "SOThirdECStoreName",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单店铺名称",
          "description": "原单店铺名称"
        },
        {
          "key": "",
          "field": "SOConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原单出库时间",
          "description": "原单出库时间"
        },
        {
          "key": "",
          "field": "SOProvinceName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单省",
          "description": "原单省"
        },
        {
          "key": "",
          "field": "SOCityName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单市",
          "description": "原单市"
        },
        {
          "key": "",
          "field": "SODistrictName",
          "type": "VARCHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单区",
          "description": "原单区"
        },
        {
          "key": "",
          "field": "SOShipTypeId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原单物流ID",
          "description": "原单物流ID"
        },
        {
          "key": "",
          "field": "SOShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "原单物流名称",
          "description": "原单物流名称"
        },
        {
          "key": "",
          "field": "SOWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原单运单号",
          "description": "原单运单号"
        },
        {
          "key": "",
          "field": "SOBillWeight",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "原单计费重量",
          "description": "原单计费重量"
        },
        {
          "key": "",
          "field": "SOShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "原单运费",
          "description": "原单运费"
        },
        {
          "key": "",
          "field": "SOFullWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "原单所有作业费",
          "description": "原单所有作业费"
        },
        {
          "key": "",
          "field": "ROSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "退货仓单号",
          "description": "退货仓单号"
        },
        {
          "key": "",
          "field": "ROID",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "''",
          "remark": "",
          "need_index": "Y",
          "title": "退货编号",
          "description": "退货编号"
        },
        {
          "key": "",
          "field": "ROWaybillNumber",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货运单号",
          "description": "退货运单号"
        },
        {
          "key": "",
          "field": "ROItemQty",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货数量",
          "description": "退货数量"
        },
        {
          "key": "",
          "field": "ROWorkFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货返作业费",
          "description": "退货返作业费"
        },
        {
          "key": "",
          "field": "ROShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "退货单运费",
          "description": "退货单运费"
        },
        {
          "key": "",
          "field": "ROConfirmDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "退货单上架时间",
          "description": "退货单上架时间"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RevVASFee",
      "sheet": "CWMBILL(仅供参考)",
      "title": "商户增值服务费用",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "RevBillSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "账单编号",
          "description": "账单编号"
        },
        {
          "key": "",
          "field": "BatchNum",
          "type": "CHAR(50)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "导入批号",
          "description": "导入批号(年月日时分秒加用户编号)"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "供应商SysNo",
          "description": "供应商SysNo"
        },
        {
          "key": "",
          "field": "OrderDate",
          "type": "DATETIME",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单据日期",
          "description": "单据日期"
        },
        {
          "key": "",
          "field": "VASType",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "增值类型",
          "description": "增值类型"
        },
        {
          "key": "",
          "field": "OrderNum",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单号",
          "description": "单号"
        },
        {
          "key": "",
          "field": "POID",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "POID",
          "description": "POID"
        },
        {
          "key": "",
          "field": "Quantity",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "数量",
          "description": "数量"
        },
        {
          "key": "",
          "field": "Unit",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单位",
          "description": "单位"
        },
        {
          "key": "",
          "field": "UnitPrice",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "单价",
          "description": "单价"
        },
        {
          "key": "",
          "field": "VASFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "费用",
          "description": "费用"
        },
        {
          "key": "",
          "field": "IsCalculate",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=NoCalc=不计算,\n1=Calc=计算",
          "need_index": "",
          "title": "快递费计算",
          "description": "快递费计算"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递ID",
          "description": "快递ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递名称",
          "description": "快递名称"
        },
        {
          "key": "",
          "field": "WaybillNumber",
          "type": "VARCHAR(100)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "快递单号",
          "description": "快递单号"
        },
        {
          "key": "",
          "field": "Weight",
          "type": "DECIMAL(18, 2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "重量KG",
          "description": "重量KG"
        },
        {
          "key": "",
          "field": "ProvinceName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "省",
          "description": "省"
        },
        {
          "key": "",
          "field": "CityName",
          "type": "VARCHAR(50)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "市",
          "description": "市"
        },
        {
          "key": "",
          "field": "ShipFee",
          "type": "DECIMAL(10, 2)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "Y",
          "title": "快递费",
          "description": "快递费"
        },
        {
          "key": "",
          "field": "TotalFee",
          "type": "DECIMAL(10, 2)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "合计费用",
          "description": "合计费用"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "Y",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "IMRoom",
      "sheet": "FTCS",
      "title": "IM的群主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "RoomID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "群组ID",
          "description": "群组ID"
        },
        {
          "key": "",
          "field": "RoomName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "群组名称",
          "description": "群组名称，自定义群名"
        },
        {
          "key": "",
          "field": "RoomDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "描述",
          "description": "描述"
        },
        {
          "key": "",
          "field": "RoomType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Customer=商户群,\n2=Supplier=供应商群,",
          "need_index": "",
          "title": "群组类型",
          "description": "群组类型"
        },
        {
          "key": "",
          "field": "OriginRoomName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "原始群名",
          "description": "原始群名，在IM中原始群名"
        },
        {
          "key": "",
          "field": "IMType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=WeChat=微信,\n2=Feishu=飞书",
          "need_index": "",
          "title": "IM类型",
          "description": "IM类型"
        },
        {
          "key": "",
          "field": "UseFTWMSFlag",
          "type": "INT",
          "required": "NULL",
          "default": "1",
          "remark": "1=Used=使用,\n0=NoUse=未使用",
          "need_index": "",
          "title": "商户是否使用飞驼WMS",
          "description": "商户是否使用飞驼WMS,商户群才配置"
        },
        {
          "key": "",
          "field": "UseFTWMSIds",
          "type": "VARCHAR(80)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "该群使用飞驼哪些仓库ID",
          "description": "该群使用飞驼哪些仓库ID,多个逗号分隔"
        },
        {
          "key": "",
          "field": "RoomMSN",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "公司拥有月结号",
          "description": "公司拥有月结号(快递MSN)，相同快递不同产品以逗号分隔 如：KYSY-FT,KYSNCR-FT,KYGRD-FT,KYCRD-FT，代表"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "1",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "状态",
          "description": "状态"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者",
          "description": "创建者系统编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建者显示名",
          "description": "创建者显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "IgnoreMsgUser",
      "sheet": "FTCS",
      "title": "需要忽略消息的用户清单，主要是记录我司仓库的用户，在IM里发送的消息被robot忽略",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "RoomType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=WeChat=微信,\n2=Feishu=飞书",
          "need_index": "",
          "title": "群组类型",
          "description": "群组类型"
        },
        {
          "key": "",
          "field": "IMUserID",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "用户的群ID",
          "description": "用户的群ID"
        },
        {
          "key": "",
          "field": "UserName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "用户姓名",
          "description": "用户姓名"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "IMRoomVendor",
      "sheet": "FTCS",
      "title": "IM群中商户群对应的货主，如果一个IM群对应多个仓库的货主，需要都加入到本表中",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "IMRoomSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "群组系统编号",
          "description": "群组系统编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "货主编号",
          "description": "货主编号"
        },
        {
          "key": "",
          "field": "VendorName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "货主名称",
          "description": "货主名称"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "IMRoomRel",
      "sheet": "FTCS",
      "title": "IM上下游群的关系表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "CustomerRoomSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "群组系统编号",
          "description": "群组系统编号"
        },
        {
          "key": "",
          "field": "SupplierRoomSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "群组归属货主编号",
          "description": "群组归属公司系统编号，客户公司、供应商公司的编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "CHAR(10)",
          "required": "NULL",
          "default": "0",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RoomMsg",
      "sheet": "FTCS",
      "title": "IM群的消息",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "RoomSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "群组系统编号",
          "description": "群组系统编号"
        },
        {
          "key": "",
          "field": "MessageId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "消息id",
          "description": "消息id"
        },
        {
          "key": "",
          "field": "IsTopic",
          "type": "TINYINT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=YES=是,\n0=NO=否",
          "need_index": "Y",
          "title": "是否为主消息",
          "description": "是否为主消息，能分解出业务单据号（比如运单号，出库单号）的消息为主消息，反之为辅助消息"
        },
        {
          "key": "",
          "field": "FromName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发送者昵称",
          "description": "发送者昵称"
        },
        {
          "key": "",
          "field": "FromId",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "发送者ID",
          "description": "发送者ID"
        },
        {
          "key": "",
          "field": "ToName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "目标昵称",
          "description": "目标昵称"
        },
        {
          "key": "",
          "field": "ToId",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "目标ID",
          "description": "目标ID"
        },
        {
          "key": "",
          "field": "MsgContent",
          "type": "VARCHAR(2000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "消息内容",
          "description": "消息内容"
        },
        {
          "key": "",
          "field": "MsgFileUrl",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "文件URL地址",
          "description": "文件URL地址，根据消息类型来处理"
        },
        {
          "key": "",
          "field": "MsgType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=Text=文本,\n1=Image=图片,\n3=Audio=音频,\n2=Vedio=视频,\n9=File=文件,\n99=Other=其它",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "MsgDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "消息时间",
          "description": "消息时间"
        },
        {
          "key": "",
          "field": "RoomType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Customer=商户群,\n2=Supplier=供应商群,",
          "need_index": "",
          "title": "群组类型",
          "description": "群组类型"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RoomMsg_WO",
      "sheet": "FTCS",
      "title": "IM消息与工单关系表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "RoomSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "IM群编号",
          "description": "IM群编号"
        },
        {
          "key": "",
          "field": "RoomMsgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "消息编号",
          "description": "消息编号"
        },
        {
          "key": "",
          "field": "WorkOrderSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "工单编号",
          "description": "工单编号"
        }
      ]
    },
    {
      "name": "AutoSendMsg",
      "sheet": "FTCS",
      "title": "[字典]系统主动发送服务类字典，比如向商户群定时发送停发订单文件，回传失败通知消息，订单推送失败通知消息，",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "RoomType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Customer=商户群,\n2=Supplier=供应商群,",
          "need_index": "",
          "title": "群组类型",
          "description": "群组类型"
        },
        {
          "key": "",
          "field": "ServiceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "服务ID",
          "description": "服务ID"
        },
        {
          "key": "",
          "field": "ServiceName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "服务名称",
          "description": "服务名称"
        },
        {
          "key": "",
          "field": "ServiceDesc",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "服务描述",
          "description": "服务描述，可以用于tips"
        },
        {
          "key": "",
          "field": "TriggerKeywords",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "触发关键字",
          "description": "触发关键字，当采用指令触发应答时，触发关键字"
        },
        {
          "key": "",
          "field": "ExecuteType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "0",
          "remark": "0=CallJsonRPC=JsonRPC调用",
          "need_index": "",
          "title": "执行类型",
          "description": "Job执行类型"
        },
        {
          "key": "",
          "field": "CallLocation",
          "type": "NVARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "调用地址",
          "description": "调用地址：微服务调用则是Url，控制台程序调用则是执行文件的绝对路径"
        },
        {
          "key": "",
          "field": "CallMethod",
          "type": "NVARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "调用方法",
          "description": "调用方法：微服务调用则是方法，控制台程序调用则为空"
        },
        {
          "key": "",
          "field": "CommonStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Actived=有效,\n0=DeActived=无效",
          "need_index": "Y",
          "title": "方案状态",
          "description": "方案状态"
        },
        {
          "key": "",
          "field": "TaskType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=LoopInterval=间隔循环,\n1=LoopFixedTime=定时循环,\n2=FixedTime=固定时间",
          "need_index": "Y",
          "title": "默认-运行周期模式",
          "description": "默认-运行周期模式。间隔模式：每间隔多少时间周期执行一次(周期=LoopUnit，间隔时间=LoopIntervalValue)；定时循环：在每个循环周期内定时执行，如每天定时执行，可多个执行点(周期=LoopUnit，定时=FixedTimeValues)；固定时间：固定在某个或多个时间点执行(取FixedTimeValues)。"
        },
        {
          "key": "",
          "field": "LoopIntervalUnit",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Second=秒,\n1=Minute=分钟,\n2=Hour=小时,\n3=Day=天,\n4=Month=月,\n5=Year=年",
          "need_index": "",
          "title": "默认-循环单位",
          "description": "默认-间隔循环时，是循环间隔单位；定时循环时，是循环周期单位；"
        },
        {
          "key": "",
          "field": "LoopIntervalValue",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "默认-间隔循环的值",
          "description": "默认-间隔循环时，循环的间隔值"
        },
        {
          "key": "",
          "field": "LoopIntervalTimeRangeFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "默认-是否需要在每天指定的时间范围内执行",
          "description": "默认-是否需要在每天指定的时间范围内执行"
        },
        {
          "key": "",
          "field": "LoopIntervalTimeRangeStart",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "默认-每天指定时间范围的起始时间",
          "description": "默认-每天指定时间范围的起始时间"
        },
        {
          "key": "",
          "field": "LoopIntervalTimeRangeEnd",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "默认-每天指定时间范围的结束时间",
          "description": "默认-每天指定时间范围的结束时间"
        },
        {
          "key": "",
          "field": "LoopFixedTimeUnit",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=Minute=分钟,\n2=Hour=小时,\n3=Day=天,\n4=Month=月,\n5=Year=年",
          "need_index": "",
          "title": "默认-定时循环时循环周期单位",
          "description": "默认-定时循环时循环周期单位"
        },
        {
          "key": "",
          "field": "LoopFixedTimeValue",
          "type": "NVARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "默认-定时循环时定时时间设置",
          "description": "默认-定时循环时，周期单位内的时间设置，多个用半角逗号分隔，最多可以设置10个点"
        },
        {
          "key": "",
          "field": "FixedTimeValues",
          "type": "NVARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "默认-定时时间设置",
          "description": "默认-定时时间设置，多个用半角逗号分隔，最多可以设置10个点"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "Room_AutoSendMsg",
      "sheet": "FTCS",
      "title": "IM群订阅可以使用哪些主动发送服务以及其周期配置",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "RoomSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "IM群编号",
          "description": "IM群编号"
        },
        {
          "key": "",
          "field": "AutoSendMsgSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统主动发送服务编号",
          "description": "系统主动发送服务编号"
        },
        {
          "key": "",
          "field": "JobLastExecuteStartTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后一次运行开始时间",
          "description": "最后一次运行开始时间"
        },
        {
          "key": "",
          "field": "JobLastExecuteEndTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后一次运行结束时间",
          "description": "最后一次运行结束时间"
        },
        {
          "key": "",
          "field": "JobNextExecuteTime",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "下一次运行时间",
          "description": "下一次运行时间"
        },
        {
          "key": "",
          "field": "JobExecuteStatus",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=WaitExecute=待执行,\n1=OnExecuting=执行中",
          "need_index": "",
          "title": "当前执行状态",
          "description": "当前执行状态"
        },
        {
          "key": "",
          "field": "JobLastExecuteResultStatus",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=Success=成功,\n2=Failure=失败",
          "need_index": "",
          "title": "最后一次执行结果状态",
          "description": "最后一次执行结果状态"
        },
        {
          "key": "",
          "field": "ResultContent",
          "type": "NVARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后一次执行内容",
          "description": "最后一次执行内容"
        },
        {
          "key": "",
          "field": "UseDefaultConfigFlag",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=YES=是,\n1=NO=否",
          "need_index": "",
          "title": "是否使用默认配置",
          "description": "是否使用默认配置"
        },
        {
          "key": "",
          "field": "TaskType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=LoopInterval=间隔循环,\n1=LoopFixedTime=定时循环,\n2=FixedTime=固定时间",
          "need_index": "Y",
          "title": "运行周期模式",
          "description": "运行周期模式。间隔模式：每间隔多少时间周期执行一次(周期=LoopUnit，间隔时间=LoopIntervalValue)；定时循环：在每个循环周期内定时执行，如每天定时执行，可多个执行点(周期=LoopUnit，定时=FixedTimeValues)；固定时间：固定在某个或多个时间点执行(取FixedTimeValues)。"
        },
        {
          "key": "",
          "field": "LoopIntervalUnit",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Second=秒,\n1=Minute=分钟,\n2=Hour=小时,\n3=Day=天,\n4=Month=月,\n5=Year=年",
          "need_index": "",
          "title": "循环单位",
          "description": "间隔循环时，是循环间隔单位；定时循环时，是循环周期单位；"
        },
        {
          "key": "",
          "field": "LoopIntervalValue",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "间隔循环的值",
          "description": "间隔循环时，循环的间隔值"
        },
        {
          "key": "",
          "field": "LoopIntervalTimeRangeFlag",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "是否需要在每天指定的时间范围内执行",
          "description": "是否需要在每天指定的时间范围内执行"
        },
        {
          "key": "",
          "field": "LoopIntervalTimeRangeStart",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "每天指定时间范围的起始时间",
          "description": "每天指定时间范围的起始时间"
        },
        {
          "key": "",
          "field": "LoopIntervalTimeRangeEnd",
          "type": "NVARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "每天指定时间范围的结束时间",
          "description": "每天指定时间范围的结束时间"
        },
        {
          "key": "",
          "field": "LoopFixedTimeUnit",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "1=Minute=分钟,\n2=Hour=小时,\n3=Day=天,\n4=Month=月,\n5=Year=年",
          "need_index": "",
          "title": "定时循环时循环周期单位",
          "description": "定时循环时，是循环周期单位；"
        },
        {
          "key": "",
          "field": "LoopFixedTimeValue",
          "type": "NVARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "定时循环时定时时间设置",
          "description": "定时循环时，周期单位内的时间设置，多个用半角逗号分隔，最多可以设置10个点"
        },
        {
          "key": "",
          "field": "FixedTimeValues",
          "type": "NVARCHAR(1000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "定时时间设置",
          "description": "定时时间设置，多个用半角逗号分隔，最多可以设置10个点"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RespSendMsg",
      "sheet": "FTCS",
      "title": "[字典]应答类服务字典表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "RoomType",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "1=Customer=商户群,\n2=Supplier=供应商群,",
          "need_index": "",
          "title": "群组类型",
          "description": "群组类型"
        },
        {
          "key": "",
          "field": "ServiceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "服务ID",
          "description": "客服系统业务类型ID,规则为4位字符串，1001 =发起物流拦截\n2001=发送物流停发清单,\n3001=SendPackageInfo=发送包裹信息"
        },
        {
          "key": "",
          "field": "ServiceName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "服务名称",
          "description": "客服系统业务类型名称"
        },
        {
          "key": "",
          "field": "SystemBizKeyword",
          "type": "Text",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统业务类型关键字",
          "description": "系统业务类型关键字"
        },
        {
          "key": "",
          "field": "ReturnFields",
          "type": "VARCHAR(2000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "服务返回字段",
          "description": "服务返回字段，用于构建系统回复的话术，包含Key和Name的JSON"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DateTime",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        }
      ]
    },
    {
      "name": "RespSendMsgTemplate",
      "sheet": "FTCS",
      "title": "[字典]客服系统回复模板",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT IDENTITY(1,1)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "CSServiceTypeSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "服务类型编号",
          "description": "服务类型编号"
        },
        {
          "key": "",
          "field": "TemplateKey",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模板Key",
          "description": "模板Key"
        },
        {
          "key": "",
          "field": "TemplateName",
          "type": "VARCHAR(40)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模板名称",
          "description": "模板名称"
        },
        {
          "key": "",
          "field": "TemplateContent",
          "type": "VARCHAR(1000)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "模板内容",
          "description": "模板内容"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(400)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人",
          "description": "创建人"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人显示名",
          "description": "创建人显示名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人",
          "description": "最后修改人系统编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "最后修改人显示名",
          "description": "最后修改人显示名"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "最后修改时间",
          "description": "最后修改时间"
        }
      ]
    },
    {
      "name": "WorkOrder",
      "sheet": "FTCS",
      "title": "工单主表",
      "fields": [
        {
          "key": "PK",
          "field": "SysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "系统编号",
          "description": "系统编号，即工单号"
        },
        {
          "key": "",
          "field": "TenantSysNo",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "租户编号",
          "description": "租户编号"
        },
        {
          "key": "",
          "field": "WHSId",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "仓库ID",
          "description": "仓库ID"
        },
        {
          "key": "",
          "field": "WOTitle",
          "type": "VARCHAR(100)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "标题",
          "description": "工单标题"
        },
        {
          "key": "",
          "field": "WOCategoryID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "分类编码",
          "description": "分类编码，两位一级，暂定2级"
        },
        {
          "key": "",
          "field": "WOContent",
          "type": "TEXT",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "内容描述",
          "description": "内容描述，图文混排"
        },
        {
          "key": "",
          "field": "BizNo",
          "type": "VARCHAR(400)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "业务单据号",
          "description": "业务单据号，根据分类确定是"
        },
        {
          "key": "",
          "field": "BizNoSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "业务单据号",
          "description": "业务单据号（订单为sysNo）"
        },
        {
          "key": "",
          "field": "BizNoType",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "\"相关编号\"=OtherRefCode = 1,\n\"订单ID\"=SOID = 2,\n\"运单号\"= WaybillNumber = 3,\n\"入库单ID\"= POID = 4,\n\"BO单ID\"=BOID = 5,\n\"退货单ID\"=  RMNO = 6,\n\"其他\"=  OtherID = 7,",
          "need_index": "",
          "title": "业务单据类型",
          "description": "业务单据类型"
        },
        {
          "key": "",
          "field": "WOStatus",
          "type": "INT",
          "required": "NOT NULL",
          "default": "",
          "remark": "0=WaitForProcessing=待处理,\n50=Processing=处理中,\n100=Closed=已完结, \n-1=Voided=已作废",
          "need_index": "Y",
          "title": "工单状态",
          "description": "工单状态\n\t提交工单后，工单状态为：待处理；\n\t开始处理工单后，状态为：受理中；\n\t客服或相关业务任务处理后，状态为：已完结；"
        },
        {
          "key": "",
          "field": "CompanySysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "公司编号",
          "description": "创建者所属公司编号"
        },
        {
          "key": "",
          "field": "CompanyName",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "公司名称",
          "description": "公司名称，冗余"
        },
        {
          "key": "",
          "field": "VendorSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "商户编号",
          "description": "创建者所属商户编号"
        },
        {
          "key": "",
          "field": "VendorName",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "商户名称",
          "description": "商户名称，冗余，避免跨库查询"
        },
        {
          "key": "",
          "field": "ShipTypeId",
          "type": "VARCHAR(20)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流ID",
          "description": "物流ID"
        },
        {
          "key": "",
          "field": "ShipTypeName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "物流名称",
          "description": "物流名称"
        },
        {
          "key": "",
          "field": "Priority",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "0=Low=低,\n50=Middle=中,\n100=High=高",
          "need_index": "",
          "title": "优先级",
          "description": "用于客服内部人员评估工单紧急情况"
        },
        {
          "key": "",
          "field": "HandleUserSysNo",
          "type": "int",
          "required": "null",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "HandleUserName",
          "type": "VARCHAR(40)",
          "required": "null",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "",
          "description": ""
        },
        {
          "key": "",
          "field": "HandleResult",
          "type": "int",
          "required": "null",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理结果",
          "description": "根据不同的工单分类在不同的处理结果列表中选择一个结果"
        },
        {
          "key": "",
          "field": "ResultName",
          "type": "VARCHAR(40)",
          "required": "null",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "处理结果名称",
          "description": "处理结果名称冗余"
        },
        {
          "key": "",
          "field": "CompensateDuty",
          "type": "int",
          "required": "null",
          "default": "",
          "remark": "0=NoDuty=无须赔付,\n1=ExpressDuty=快递赔付,\n2=StockDuty=仓库赔付",
          "need_index": "Y",
          "title": "赔付责任",
          "description": "根据工单类型和处理结果确定赔付责任"
        },
        {
          "key": "",
          "field": "AmountInvolved",
          "type": "Decimal(18,2)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "涉及金额",
          "description": "涉及金额"
        },
        {
          "key": "",
          "field": "Memo",
          "type": "VARCHAR(4000)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "备注",
          "description": "备注"
        },
        {
          "key": "",
          "field": "KeyWords",
          "type": "VARCHAR(200)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "关键字",
          "description": "机器人触发工单创建时的关键字"
        },
        {
          "key": "",
          "field": "DataSourceID",
          "type": "VARCHAR(10)",
          "required": "NOT NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "数据来源",
          "description": "数据来源：FlytoWMS=云仓WMS,FlytoRobot=微信机器人"
        },
        {
          "key": "",
          "field": "InUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "创建人编号",
          "description": "创建人编号"
        },
        {
          "key": "",
          "field": "InUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "创建人姓名",
          "description": "创建人姓名"
        },
        {
          "key": "",
          "field": "InDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "创建时间",
          "description": "创建时间"
        },
        {
          "key": "",
          "field": "EditUserSysNo",
          "type": "INT",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "Y",
          "title": "修改编号",
          "description": "修改编号"
        },
        {
          "key": "",
          "field": "EditUserName",
          "type": "VARCHAR(40)",
          "required": "NULL",
          "default": "",
          "remark": "",
          "need_index": "",
          "title": "修改人名称",
          "description": "修改人名称"
        },
        {
          "key": "",
          "field": "EditDate",
          "type": "DATETIME",
          "required": "NULL",
          "default": "GETDATE()",
          "remark": "",
          "need_index": "",
          "title": "修改时间",
          "description": "修改时间"
        }
      ]
    }
  ]
}