格式化代码
parent
9fa6ec6953
commit
a54d1ad330
|
|
@ -2,6 +2,7 @@ package com.cowr.common.Interceptor;
|
||||||
|
|
||||||
import com.jfinal.aop.Interceptor;
|
import com.jfinal.aop.Interceptor;
|
||||||
import com.jfinal.aop.Invocation;
|
import com.jfinal.aop.Invocation;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
public class CorsInterceptor implements Interceptor {
|
public class CorsInterceptor implements Interceptor {
|
||||||
|
|
|
||||||
|
|
@ -45,8 +45,7 @@ public abstract class BaseController extends Controller {
|
||||||
if (value.startsWith("N") || value.startsWith("n"))
|
if (value.startsWith("N") || value.startsWith("n"))
|
||||||
return -Double.parseDouble(value.substring(1));
|
return -Double.parseDouble(value.substring(1));
|
||||||
return Double.parseDouble(value);
|
return Double.parseDouble(value);
|
||||||
}
|
} catch (Exception e) {
|
||||||
catch (Exception e) {
|
|
||||||
throw new ActionException(400, renderManager.getRenderFactory().getErrorRender(400), "Can not parse the parameter \"" + value + "\" to Double value.");
|
throw new ActionException(400, renderManager.getRenderFactory().getErrorRender(400), "Can not parse the parameter \"" + value + "\" to Double value.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@ public interface Enums {
|
||||||
/**
|
/**
|
||||||
* 判断 which 是否有效
|
* 判断 which 是否有效
|
||||||
* 以枚举 name 开头的是有效的
|
* 以枚举 name 开头的是有效的
|
||||||
|
*
|
||||||
* @param which
|
* @param which
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,13 @@ import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
订单状态类型必须是一致
|
* 订单状态类型必须是一致
|
||||||
1,初始状态;
|
* 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(后台自动设置)
|
* 4,已离场(后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
*/
|
*/
|
||||||
public enum OrderStateEnum {
|
public enum OrderStateEnum {
|
||||||
INITIAL(1),
|
INITIAL(1),
|
||||||
|
|
@ -36,6 +36,7 @@ public enum OrderStateEnum {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断 stateid 是否合法
|
* 判断 stateid 是否合法
|
||||||
|
*
|
||||||
* @param stateid
|
* @param stateid
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,12 @@ import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
销售订单状态和转运订单状态类型必须是一致
|
* 销售订单状态和转运订单状态类型必须是一致
|
||||||
1,销售订单
|
* 1,销售订单
|
||||||
2,转运订单
|
* 2,转运订单
|
||||||
3,临时订单(外销订单)
|
* 3,临时订单(外销订单)
|
||||||
4. 废料运输订单
|
* 4. 废料运输订单
|
||||||
5. 采购订单
|
* 5. 采购订单
|
||||||
*/
|
*/
|
||||||
public enum OrderTypeEnum {
|
public enum OrderTypeEnum {
|
||||||
SALE(1),
|
SALE(1),
|
||||||
|
|
@ -34,6 +34,7 @@ public enum OrderTypeEnum {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断 typeid 是否合法
|
* 判断 typeid 是否合法
|
||||||
|
*
|
||||||
* @param typeid
|
* @param typeid
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -4,19 +4,19 @@ import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
100 砂站管理员
|
* 100 砂站管理员
|
||||||
101 砂站管理调度
|
* 101 砂站管理调度
|
||||||
102 砂站装卸货
|
* 102 砂站装卸货
|
||||||
|
* <p>
|
||||||
201 物流管理人员
|
* 201 物流管理人员
|
||||||
202 司机
|
* 202 司机
|
||||||
|
* <p>
|
||||||
300 注册用户
|
* 300 注册用户
|
||||||
400 占位
|
* 400 占位
|
||||||
|
* <p>
|
||||||
500 公司总经理,权限:查看、付费审核、退费审核
|
* 500 公司总经理,权限:查看、付费审核、退费审核
|
||||||
501 公司财务人员,权限:查看、付费、退费
|
* 501 公司财务人员,权限:查看、付费、退费
|
||||||
502 公司领导,权限:查看
|
* 502 公司领导,权限:查看
|
||||||
*/
|
*/
|
||||||
public enum RoleEnum {
|
public enum RoleEnum {
|
||||||
DEVOPS(99),
|
DEVOPS(99),
|
||||||
|
|
@ -33,8 +33,7 @@ public enum RoleEnum {
|
||||||
TREASURER(501),
|
TREASURER(501),
|
||||||
PRESIDENTVIEW(502),
|
PRESIDENTVIEW(502),
|
||||||
|
|
||||||
CHAISHA(600)
|
CHAISHA(600);
|
||||||
;
|
|
||||||
|
|
||||||
private Integer roleid;
|
private Integer roleid;
|
||||||
|
|
||||||
|
|
@ -52,6 +51,7 @@ public enum RoleEnum {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断 roleid 是否合法
|
* 判断 roleid 是否合法
|
||||||
|
*
|
||||||
* @param roleid
|
* @param roleid
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ package com.cowr.common.enums;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 车辆入场状态
|
* 车辆入场状态
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
public class TruckRodState {
|
public class TruckRodState {
|
||||||
public static final int state_1 = 1; // 未在系统中登记的车牌,未入场。红色。
|
public static final int state_1 = 1; // 未在系统中登记的车牌,未入场。红色。
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,15 @@ import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
type 和 role 对应,每类 type 下还会对应多个 role
|
* type 和 role 对应,每类 type 下还会对应多个 role
|
||||||
1,砂站用户
|
* 1,砂站用户
|
||||||
负责具体某个砂站相关操作的用户需要关联某个砂站
|
* 负责具体某个砂站相关操作的用户需要关联某个砂站
|
||||||
2,物流公司用户
|
* 2,物流公司用户
|
||||||
需要关联物流公司
|
* 需要关联物流公司
|
||||||
3,用户开放注册时的用户注册,可以审核关联客户表信息,否则就是个人用户不进行customer关联
|
* 3,用户开放注册时的用户注册,可以审核关联客户表信息,否则就是个人用户不进行customer关联
|
||||||
修改操作不允许修改此字段
|
* 修改操作不允许修改此字段
|
||||||
4. 司机
|
* 4. 司机
|
||||||
5. 砂石公司用户,可以查看管理全部砂站情况
|
* 5. 砂石公司用户,可以查看管理全部砂站情况
|
||||||
*/
|
*/
|
||||||
public enum UserTypeEnum {
|
public enum UserTypeEnum {
|
||||||
CONFIG(0), // 系统配置管理
|
CONFIG(0), // 系统配置管理
|
||||||
|
|
@ -50,6 +50,7 @@ public enum UserTypeEnum {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断 typeid 是否合法
|
* 判断 typeid 是否合法
|
||||||
|
*
|
||||||
* @param typeid
|
* @param typeid
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ public class DataUtil {
|
||||||
/**
|
/**
|
||||||
* 将列表结构树数据,转换成树状结构
|
* 将列表结构树数据,转换成树状结构
|
||||||
* 固定配置属性
|
* 固定配置属性
|
||||||
|
*
|
||||||
* @param sNodes
|
* @param sNodes
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
@ -27,7 +28,6 @@ public class DataUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* {
|
* {
|
||||||
* idKey : 'id',
|
* idKey : 'id',
|
||||||
* pIdKey : 'pid',
|
* pIdKey : 'pid',
|
||||||
|
|
@ -79,6 +79,7 @@ public class DataUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 克隆 record 对象
|
* 克隆 record 对象
|
||||||
|
*
|
||||||
* @param record
|
* @param record
|
||||||
* @param deep 是否递归克隆
|
* @param deep 是否递归克隆
|
||||||
* @return
|
* @return
|
||||||
|
|
@ -102,6 +103,7 @@ public class DataUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 从 record 中取出 double 值,当对象为 BigDecimal 时,也只返回 double
|
* 从 record 中取出 double 值,当对象为 BigDecimal 时,也只返回 double
|
||||||
|
*
|
||||||
* @param record
|
* @param record
|
||||||
* @param key
|
* @param key
|
||||||
* @return
|
* @return
|
||||||
|
|
|
||||||
|
|
@ -46,8 +46,10 @@ public class DateTimeUtil {
|
||||||
return new SimpleDateFormat("yyyy-MM-dd HH:mm");
|
return new SimpleDateFormat("yyyy-MM-dd HH:mm");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 验证是否符合格式的时间字符串
|
* 验证是否符合格式的时间字符串
|
||||||
|
*
|
||||||
* @param str
|
* @param str
|
||||||
* @param fmt
|
* @param fmt
|
||||||
* @return
|
* @return
|
||||||
|
|
@ -105,6 +107,7 @@ public class DateTimeUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 是否早于当天
|
* 是否早于当天
|
||||||
|
*
|
||||||
* @param date
|
* @param date
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
@ -114,6 +117,7 @@ public class DateTimeUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 是当天的时间
|
* 是当天的时间
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public static boolean isToday(Date date) {
|
public static boolean isToday(Date date) {
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ public class JsonUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* json 对象 key 转小写
|
* json 对象 key 转小写
|
||||||
|
*
|
||||||
* @param obj
|
* @param obj
|
||||||
* @param deep
|
* @param deep
|
||||||
* @return
|
* @return
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,7 @@ public class MathUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* double 三舍四入
|
* double 三舍四入
|
||||||
|
*
|
||||||
* @param d
|
* @param d
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
@ -47,8 +48,7 @@ public class MathUtil {
|
||||||
if (d - 0.4 >= b) {
|
if (d - 0.4 >= b) {
|
||||||
b++;
|
b++;
|
||||||
return b;
|
return b;
|
||||||
}
|
} else
|
||||||
else
|
|
||||||
return b;
|
return b;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ public class ReqUtil {
|
||||||
* 答案是取X-Forwarded-For中第一个非unknown的有效IP字符串。
|
* 答案是取X-Forwarded-For中第一个非unknown的有效IP字符串。
|
||||||
* 如:X-Forwarded-For:192.168.1.110, 192.168.1.120, 192.168.1.130, 192.168.1.100
|
* 如:X-Forwarded-For:192.168.1.110, 192.168.1.120, 192.168.1.130, 192.168.1.100
|
||||||
* 用户真实IP为: 192.168.1.110
|
* 用户真实IP为: 192.168.1.110
|
||||||
|
*
|
||||||
* @param request
|
* @param request
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -110,6 +110,7 @@ public class StrUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 构造sql
|
* 构造sql
|
||||||
|
*
|
||||||
* @param table
|
* @param table
|
||||||
* @param columns
|
* @param columns
|
||||||
* @return
|
* @return
|
||||||
|
|
@ -129,6 +130,7 @@ public class StrUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 限定返回结果,只要第一个
|
* 限定返回结果,只要第一个
|
||||||
|
*
|
||||||
* @param table
|
* @param table
|
||||||
* @param columns
|
* @param columns
|
||||||
* @return
|
* @return
|
||||||
|
|
@ -140,8 +142,7 @@ public class StrUtil {
|
||||||
/**
|
/**
|
||||||
* 将一个中间带逗号分隔符的字符串转换为字符型数组对象
|
* 将一个中间带逗号分隔符的字符串转换为字符型数组对象
|
||||||
*
|
*
|
||||||
* @param str
|
* @param str 待转换的符串对象
|
||||||
* 待转换的符串对象
|
|
||||||
* @return 字符型数组
|
* @return 字符型数组
|
||||||
*/
|
*/
|
||||||
public static String[] strToStrArray(String str) {
|
public static String[] strToStrArray(String str) {
|
||||||
|
|
|
||||||
|
|
@ -16,9 +16,11 @@ public abstract class CrudParamValidator extends ParamValidator {
|
||||||
protected void validateUpdateModel(Class modelClass, String modelName) {
|
protected void validateUpdateModel(Class modelClass, String modelName) {
|
||||||
validateUpdateModel(modelClass, modelName, true);
|
validateUpdateModel(modelClass, modelName, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 通过 model.update() 跟新数据时,检查是否只有主键相关的字段
|
* 通过 model.update() 跟新数据时,检查是否只有主键相关的字段
|
||||||
* 避免 com.jfinal.oss.activerecord.Model.update(Model.java:630) 这抛异常
|
* 避免 com.jfinal.oss.activerecord.Model.update(Model.java:630) 这抛异常
|
||||||
|
*
|
||||||
* @param modelClass 根据model class 找到映射的表,查找映射的表的字段、主键
|
* @param modelClass 根据model class 找到映射的表,查找映射的表的字段、主键
|
||||||
* @param modelName
|
* @param modelName
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@ public abstract class ParamValidator extends Validator {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 添加错误到 map
|
* 添加错误到 map
|
||||||
|
*
|
||||||
* @param errorKey
|
* @param errorKey
|
||||||
* @param errorMessage
|
* @param errorMessage
|
||||||
*/
|
*/
|
||||||
|
|
@ -49,6 +50,7 @@ public abstract class ParamValidator extends Validator {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 指定格式验证时间字段
|
* 指定格式验证时间字段
|
||||||
|
*
|
||||||
* @param field 字段名称
|
* @param field 字段名称
|
||||||
* @param datePattern 时间格式
|
* @param datePattern 时间格式
|
||||||
* @param isRequired 是否必填,如果非必填,只有在获取到值时才校验是否符合格式
|
* @param isRequired 是否必填,如果非必填,只有在获取到值时才校验是否符合格式
|
||||||
|
|
@ -82,8 +84,7 @@ public abstract class ParamValidator extends Validator {
|
||||||
if (temp.compareTo(min) < 0 || temp.compareTo(max) > 0) {
|
if (temp.compareTo(min) < 0 || temp.compareTo(max) > 0) {
|
||||||
addError(errorKey, errorMessage);
|
addError(errorKey, errorMessage);
|
||||||
}
|
}
|
||||||
}
|
} catch (Exception e) {
|
||||||
catch (Exception e) {
|
|
||||||
addError(errorKey, errorMessage);
|
addError(errorKey, errorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -99,8 +100,7 @@ public abstract class ParamValidator extends Validator {
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
new BigDecimal(value.trim());
|
new BigDecimal(value.trim());
|
||||||
}
|
} catch (Exception e) {
|
||||||
catch (Exception e) {
|
|
||||||
addError(errorKey, errorMessage);
|
addError(errorKey, errorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
/**
|
/**
|
||||||
* Copyright (c) 2011-2019, James Zhan 詹波 (jfinal@126.com).
|
* Copyright (c) 2011-2019, James Zhan 詹波 (jfinal@126.com).
|
||||||
*
|
* <p>
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
*
|
* <p>
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
* <p>
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
|
@ -100,8 +100,7 @@ public class ActionReporter {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} catch (Exception e2) {
|
||||||
catch(Exception e2){
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return lineNum;
|
return lineNum;
|
||||||
|
|
@ -203,8 +202,7 @@ public class ActionReporter {
|
||||||
} else {
|
} else {
|
||||||
sb.append(values[0]);
|
sb.append(values[0]);
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
sb.append(name).append("[]={");
|
sb.append(name).append("[]={");
|
||||||
for (int i = 0; i < values.length; i++) {
|
for (int i = 0; i < values.length; i++) {
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
|
|
@ -239,9 +237,15 @@ public class ActionReporter {
|
||||||
public void write(String str) throws IOException {
|
public void write(String str) throws IOException {
|
||||||
log.debug(str);
|
log.debug(str);
|
||||||
}
|
}
|
||||||
public void write(char[] cbuf, int off, int len) throws IOException {}
|
|
||||||
public void flush() throws IOException {}
|
public void write(char[] cbuf, int off, int len) throws IOException {
|
||||||
public void close() throws IOException {}
|
}
|
||||||
|
|
||||||
|
public void flush() throws IOException {
|
||||||
|
}
|
||||||
|
|
||||||
|
public void close() throws IOException {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ public class JsonRenderFactory extends RenderFactory {
|
||||||
public Render getErrorRender(int errorCode) {
|
public Render getErrorRender(int errorCode) {
|
||||||
return getErrorRender(errorCode, null);
|
return getErrorRender(errorCode, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Render getErrorRender(int errorCode, String view) {
|
public Render getErrorRender(int errorCode, String view) {
|
||||||
if (errorCode != 400) {
|
if (errorCode != 400) {
|
||||||
return new JsonRender(new Result(errorCode, null, view));
|
return new JsonRender(new Result(errorCode, null, view));
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ public class ReportExcelStyle {
|
||||||
) {
|
) {
|
||||||
setCommonStyle(wb, sheet, title, subtitle, datalen, end_col, 4);
|
setCommonStyle(wb, sheet, title, subtitle, datalen, end_col, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setCommonStyle(
|
public static void setCommonStyle(
|
||||||
Workbook wb,
|
Workbook wb,
|
||||||
Sheet sheet,
|
Sheet sheet,
|
||||||
|
|
|
||||||
|
|
@ -95,6 +95,7 @@ public class Result {
|
||||||
/**
|
/**
|
||||||
* 强转 Record
|
* 强转 Record
|
||||||
* TODO 可能会有类型转换错误
|
* TODO 可能会有类型转换错误
|
||||||
|
*
|
||||||
* @return Record
|
* @return Record
|
||||||
*/
|
*/
|
||||||
@JSONField(serialize = false)
|
@JSONField(serialize = false)
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import com.cowr.model.base.BaseOrderTrash;
|
||||||
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
||||||
* TableName: order_trash
|
* TableName: order_trash
|
||||||
* Remarks: 订单相关 - 废料运出单
|
* Remarks: 订单相关 - 废料运出单
|
||||||
|
* <p>
|
||||||
* PrimaryKey: sn
|
* PrimaryKey: sn
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import com.cowr.model.base.BasePrepayDetailStateHistory;
|
||||||
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
||||||
* TableName: prepay_detail_state_history
|
* TableName: prepay_detail_state_history
|
||||||
* Remarks: 客户相关 - 客户预付费记录状态变化日志
|
* Remarks: 客户相关 - 客户预付费记录状态变化日志
|
||||||
|
* <p>
|
||||||
* PrimaryKey: id
|
* PrimaryKey: id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import com.cowr.model.base.BaseSupermarketSandfarmDistance;
|
||||||
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
||||||
* TableName: supermarket_sandfarm_distance
|
* TableName: supermarket_sandfarm_distance
|
||||||
* Remarks: 基础配置 - 生产点到销售点的距离配置
|
* Remarks: 基础配置 - 生产点到销售点的距离配置
|
||||||
|
* <p>
|
||||||
* PrimaryKey: supermarket_id,sandfarm_id
|
* PrimaryKey: supermarket_id,sandfarm_id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import com.cowr.model.base.BaseTransPriceConfigSale;
|
||||||
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
||||||
* TableName: trans_price_config_sale
|
* TableName: trans_price_config_sale
|
||||||
* Remarks: 系统配置 - 销售运费配置信息
|
* Remarks: 系统配置 - 销售运费配置信息
|
||||||
|
* <p>
|
||||||
* PrimaryKey: id
|
* PrimaryKey: id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import com.cowr.model.base.BaseTransPriceConfigTransfer;
|
||||||
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
||||||
* TableName: trans_price_config_transfer
|
* TableName: trans_price_config_transfer
|
||||||
* Remarks: 系统配置 - 转运运费配置信息
|
* Remarks: 系统配置 - 转运运费配置信息
|
||||||
|
* <p>
|
||||||
* PrimaryKey: id
|
* PrimaryKey: id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import com.cowr.model.base.BaseTransPriceConfigTrash;
|
||||||
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
||||||
* TableName: trans_price_config_trash
|
* TableName: trans_price_config_trash
|
||||||
* Remarks: 系统配置 - 废料运费配置信息
|
* Remarks: 系统配置 - 废料运费配置信息
|
||||||
|
* <p>
|
||||||
* PrimaryKey: id
|
* PrimaryKey: id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseActionCmdLog<M extends BaseActionCmdLog<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseActionCmdLog<M extends BaseActionCmdLog<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId 创建用户id
|
* @param createUserId 创建用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseActionCmdLog<M extends BaseActionCmdLog<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseActionCmdLog<M extends BaseActionCmdLog<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 最后修改时间
|
* @param createTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseActionCmdLog<M extends BaseActionCmdLog<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param content 指令内容
|
* @param content 指令内容
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "content")
|
@JSONField(name = "content")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseAuthLicense<M extends BaseAuthLicense<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense
|
* @param truckLicense
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseAuthLicense<M extends BaseAuthLicense<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 加入时间
|
* @param createTime 加入时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id 使用uuid
|
* @param id 使用uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense 车牌号
|
* @param truckLicense 车牌号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param driverName 司机姓名
|
* @param driverName 司机姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "driver_name")
|
@JSONField(name = "driver_name")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param driverPhone 司机手机号
|
* @param driverPhone 司机手机号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "driver_phone")
|
@JSONField(name = "driver_phone")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param orderSn 关联的订单
|
* @param orderSn 关联的订单
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "order_sn")
|
@JSONField(name = "order_sn")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param setTime
|
* @param setTime
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "set_time")
|
@JSONField(name = "set_time")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param setUserId
|
* @param setUserId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "set_user_id")
|
@JSONField(name = "set_user_id")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param setUserName
|
* @param setUserName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "set_user_name")
|
@JSONField(name = "set_user_name")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param removeTime
|
* @param removeTime
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "remove_time")
|
@JSONField(name = "remove_time")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param removeUserId remove_user_id 为空的,表示该车辆还在黑名单中,不能进场
|
* @param removeUserId remove_user_id 为空的,表示该车辆还在黑名单中,不能进场
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "remove_user_id")
|
@JSONField(name = "remove_user_id")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param removeUserName
|
* @param removeUserName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "remove_user_name")
|
@JSONField(name = "remove_user_name")
|
||||||
|
|
@ -268,9 +279,10 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param reasonType 1,不服从管理
|
* @param reasonType 1,不服从管理
|
||||||
2,舞弊行为
|
* 2,舞弊行为
|
||||||
9,其他
|
* 9,其他
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "reason_type")
|
@JSONField(name = "reason_type")
|
||||||
public void setReasonType(Integer reasonType) {
|
public void setReasonType(Integer reasonType) {
|
||||||
|
|
@ -280,8 +292,8 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return reason_type 1,不服从管理
|
* @return reason_type 1,不服从管理
|
||||||
2,舞弊行为
|
* 2,舞弊行为
|
||||||
9,其他
|
* 9,其他
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "reason_type")
|
@JSONField(name = "reason_type")
|
||||||
public Integer getReasonType() {
|
public Integer getReasonType() {
|
||||||
|
|
@ -294,6 +306,7 @@ public abstract class BaseBlacklist<M extends BaseBlacklist<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param reasonDetail
|
* @param reasonDetail
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "reason_detail")
|
@JSONField(name = "reason_detail")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitId id
|
* @param unitId id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_id")
|
@JSONField(name = "unit_id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitName 名称
|
* @param unitName 名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_name")
|
@JSONField(name = "unit_name")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitType 监控对象,1.销售点、2.生产点
|
* @param unitType 监控对象,1.销售点、2.生产点
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_type")
|
@JSONField(name = "unit_type")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param ip 外网ip
|
* @param ip 外网ip
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "ip")
|
@JSONField(name = "ip")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param intranetIp 内网ip
|
* @param intranetIp 内网ip
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "Intranet_ip")
|
@JSONField(name = "Intranet_ip")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param port 外网端口
|
* @param port 外网端口
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "port")
|
@JSONField(name = "port")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param intranetPort 内网端口
|
* @param intranetPort 内网端口
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "Intranet_port")
|
@JSONField(name = "Intranet_port")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param u 硬盘录像机账号
|
* @param u 硬盘录像机账号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "u")
|
@JSONField(name = "u")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseCctv<M extends BaseCctv<M>> extends BaseModel<M> imple
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param p 硬盘录像机密码
|
* @param p 硬盘录像机密码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "p")
|
@JSONField(name = "p")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseCctvChannels<M extends BaseCctvChannels<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id 通道id
|
* @param id 通道id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseCctvChannels<M extends BaseCctvChannels<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitId 砂站id,砂场id前加 s
|
* @param unitId 砂站id,砂场id前加 s
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_id")
|
@JSONField(name = "unit_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseCctvChannels<M extends BaseCctvChannels<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name 名称
|
* @param name 名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseCctvChannels<M extends BaseCctvChannels<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param defaultSelect 是否默认选中
|
* @param defaultSelect 是否默认选中
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "default_select")
|
@JSONField(name = "default_select")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseCctvChannels<M extends BaseCctvChannels<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitType 监控对象,1.销售点、2.生产点
|
* @param unitType 监控对象,1.销售点、2.生产点
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_type")
|
@JSONField(name = "unit_type")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name
|
* @param name
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param address 开票地址
|
* @param address 开票地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "address")
|
@JSONField(name = "address")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param phone 开票电话(可以是座机)
|
* @param phone 开票电话(可以是座机)
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "phone")
|
@JSONField(name = "phone")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param texpayerName 开票公司名称
|
* @param texpayerName 开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "texpayer_name")
|
@JSONField(name = "texpayer_name")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param texpayerNum 税号
|
* @param texpayerNum 税号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "texpayer_num")
|
@JSONField(name = "texpayer_num")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bankName 开户行名称
|
* @param bankName 开户行名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bank_name")
|
@JSONField(name = "bank_name")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bankAccount 开户行账号
|
* @param bankAccount 开户行账号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bank_account")
|
@JSONField(name = "bank_account")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo
|
* @param memo
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del
|
* @param del
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param type 是否预付费客户,0.不是,1.是
|
* @param type 是否预付费客户,0.不是,1.是
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param invoiceType 1.普票,2.专票
|
* @param invoiceType 1.普票,2.专票
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_type")
|
@JSONField(name = "invoice_type")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseCustomerContact<M extends BaseCustomerContact<M>> exte
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseCustomerContact<M extends BaseCustomerContact<M>> exte
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId 客户id
|
* @param customerId 客户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseCustomerContact<M extends BaseCustomerContact<M>> exte
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name 姓名
|
* @param name 姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseCustomerContact<M extends BaseCustomerContact<M>> exte
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param phone 电话
|
* @param phone 电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "phone")
|
@JSONField(name = "phone")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseCustomerPact<M extends BaseCustomerPact<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseCustomerPact<M extends BaseCustomerPact<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId
|
* @param customerId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseCustomerPact<M extends BaseCustomerPact<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param signTime 签订日期
|
* @param signTime 签订日期
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sign_time")
|
@JSONField(name = "sign_time")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseCustomerPact<M extends BaseCustomerPact<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param singTotalPrice 总价
|
* @param singTotalPrice 总价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sing_total_price")
|
@JSONField(name = "sing_total_price")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseCustomerPact<M extends BaseCustomerPact<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param singTotalWeight 总吨数
|
* @param singTotalWeight 总吨数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sing_total_weight")
|
@JSONField(name = "sing_total_weight")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseCustomerPact<M extends BaseCustomerPact<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param signUserName 签订人
|
* @param signUserName 签订人
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sign_user_name")
|
@JSONField(name = "sign_user_name")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseCustomerPact<M extends BaseCustomerPact<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param cutoffTime 截止时间
|
* @param cutoffTime 截止时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "cutoff_time")
|
@JSONField(name = "cutoff_time")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseCustomerPact<M extends BaseCustomerPact<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del
|
* @param del
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId
|
* @param customerId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name 收货人姓名
|
* @param name 收货人姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param phone 收货人电话
|
* @param phone 收货人电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "phone")
|
@JSONField(name = "phone")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param address 收货地址
|
* @param address 收货地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "address")
|
@JSONField(name = "address")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lgtd 收货经度
|
* @param lgtd 收货经度
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lgtd")
|
@JSONField(name = "lgtd")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lttd 收货纬度
|
* @param lttd 收货纬度
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lttd")
|
@JSONField(name = "lttd")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo 备注
|
* @param memo 备注
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseCustomerReceiver<M extends BaseCustomerReceiver<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param isdefault 默认收获地址,1 是设置为默认
|
* @param isdefault 默认收获地址,1 是设置为默认
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "isdefault")
|
@JSONField(name = "isdefault")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sysuserPhone 电话
|
* @param sysuserPhone 电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sysuser_phone")
|
@JSONField(name = "sysuser_phone")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sysuserPassword 密码
|
* @param sysuserPassword 密码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sysuser_password")
|
@JSONField(name = "sysuser_password")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sysuserName 姓名
|
* @param sysuserName 姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sysuser_name")
|
@JSONField(name = "sysuser_name")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerAddress 开票地址
|
* @param customerAddress 开票地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_address")
|
@JSONField(name = "customer_address")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerPhone 开票电话(可以是座机)
|
* @param customerPhone 开票电话(可以是座机)
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_phone")
|
@JSONField(name = "customer_phone")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerTexpayerName 开票公司名称
|
* @param customerTexpayerName 开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_texpayer_name")
|
@JSONField(name = "customer_texpayer_name")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerTexpayerNum 税号
|
* @param customerTexpayerNum 税号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_texpayer_num")
|
@JSONField(name = "customer_texpayer_num")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerBankName 开户行名称
|
* @param customerBankName 开户行名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_bank_name")
|
@JSONField(name = "customer_bank_name")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerBankAccount 开户行账号
|
* @param customerBankAccount 开户行账号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_bank_account")
|
@JSONField(name = "customer_bank_account")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param receiverName 收货人姓名
|
* @param receiverName 收货人姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "receiver_name")
|
@JSONField(name = "receiver_name")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param receiverPhone 收货人电话
|
* @param receiverPhone 收货人电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "receiver_phone")
|
@JSONField(name = "receiver_phone")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param receiverAddress 收货地址
|
* @param receiverAddress 收货地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "receiver_address")
|
@JSONField(name = "receiver_address")
|
||||||
|
|
@ -312,6 +325,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param state 1 新申请,5 审核通过,9 审核未通过或过期
|
* @param state 1 新申请,5 审核通过,9 审核未通过或过期
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
|
|
@ -334,6 +348,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 创建时间
|
* @param createTime 创建时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -356,6 +371,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -378,6 +394,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param verifyTime 审核时间,不论审核是否通过都更新
|
* @param verifyTime 审核时间,不论审核是否通过都更新
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "verify_time")
|
@JSONField(name = "verify_time")
|
||||||
|
|
@ -400,6 +417,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param verifyUserId 审核用户id
|
* @param verifyUserId 审核用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "verify_user_id")
|
@JSONField(name = "verify_user_id")
|
||||||
|
|
@ -422,6 +440,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param verifyUserName 审核用户姓名
|
* @param verifyUserName 审核用户姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "verify_user_name")
|
@JSONField(name = "verify_user_name")
|
||||||
|
|
@ -444,6 +463,7 @@ public abstract class BaseCustomerRegister<M extends BaseCustomerRegister<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param verifyMemo 审核说明
|
* @param verifyMemo 审核说明
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "verify_memo")
|
@JSONField(name = "verify_memo")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseDeviceConfig<M extends BaseDeviceConfig<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -48,26 +49,27 @@ public abstract class BaseDeviceConfig<M extends BaseDeviceConfig<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param content {
|
* @param content {
|
||||||
cameras: [
|
* cameras: [
|
||||||
{ id: 'in', ip: '', port: 123 },
|
* { id: 'in', ip: '', port: 123 },
|
||||||
{ id: 'out', ip: '', port: 123 }
|
* { id: 'out', ip: '', port: 123 }
|
||||||
],
|
* ],
|
||||||
|
* <p>
|
||||||
scales: [
|
* scales: [
|
||||||
{ id: 'in', ip: '', port: 123 },
|
* { id: 'in', ip: '', port: 123 },
|
||||||
{ id: 'out', ip: '', port: 123 }
|
* { id: 'out', ip: '', port: 123 }
|
||||||
],
|
* ],
|
||||||
|
* <p>
|
||||||
leds: [
|
* leds: [
|
||||||
{ id: 'in', ip: '', port: 123 },
|
* { id: 'in', ip: '', port: 123 },
|
||||||
{ id: 'out', ip: '', port: 123 }
|
* { id: 'out', ip: '', port: 123 }
|
||||||
]
|
* ]
|
||||||
|
* <p>
|
||||||
plcs: [
|
* plcs: [
|
||||||
{ id: 'all', ip: '', port: 123 }
|
* { id: 'all', ip: '', port: 123 }
|
||||||
]
|
* ]
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "content")
|
@JSONField(name = "content")
|
||||||
public void setContent(String content) {
|
public void setContent(String content) {
|
||||||
|
|
@ -77,25 +79,25 @@ public abstract class BaseDeviceConfig<M extends BaseDeviceConfig<M>> extends Ba
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return content {
|
* @return content {
|
||||||
cameras: [
|
* cameras: [
|
||||||
{ id: 'in', ip: '', port: 123 },
|
* { id: 'in', ip: '', port: 123 },
|
||||||
{ id: 'out', ip: '', port: 123 }
|
* { id: 'out', ip: '', port: 123 }
|
||||||
],
|
* ],
|
||||||
|
* <p>
|
||||||
scales: [
|
* scales: [
|
||||||
{ id: 'in', ip: '', port: 123 },
|
* { id: 'in', ip: '', port: 123 },
|
||||||
{ id: 'out', ip: '', port: 123 }
|
* { id: 'out', ip: '', port: 123 }
|
||||||
],
|
* ],
|
||||||
|
* <p>
|
||||||
leds: [
|
* leds: [
|
||||||
{ id: 'in', ip: '', port: 123 },
|
* { id: 'in', ip: '', port: 123 },
|
||||||
{ id: 'out', ip: '', port: 123 }
|
* { id: 'out', ip: '', port: 123 }
|
||||||
]
|
* ]
|
||||||
|
* <p>
|
||||||
plcs: [
|
* plcs: [
|
||||||
{ id: 'all', ip: '', port: 123 }
|
* { id: 'all', ip: '', port: 123 }
|
||||||
]
|
* ]
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "content")
|
@JSONField(name = "content")
|
||||||
public String getContent() {
|
public String getContent() {
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseDriver<M extends BaseDriver<M>> extends BaseModel<M> i
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseDriver<M extends BaseDriver<M>> extends BaseModel<M> i
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 所属物流公司
|
* @param transCoId 所属物流公司
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseDriver<M extends BaseDriver<M>> extends BaseModel<M> i
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name 司机姓名
|
* @param name 司机姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseDriver<M extends BaseDriver<M>> extends BaseModel<M> i
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param phone 司机电话
|
* @param phone 司机电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "phone")
|
@JSONField(name = "phone")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseDriver<M extends BaseDriver<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo
|
* @param memo
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseDriver<M extends BaseDriver<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del 逻辑删除字段
|
* @param del 逻辑删除字段
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invoiceReceiveId 领用记录id
|
* @param invoiceReceiveId 领用记录id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_receive_id")
|
@JSONField(name = "invoice_receive_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param code 发票代码
|
* @param code 发票代码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "code")
|
@JSONField(name = "code")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 创建时间
|
* @param createTime 创建时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 1 新领取、未使用,5 已使用,9 作废
|
* @param state 1 新领取、未使用,5 已使用,9 作废
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementTime 开票时间
|
* @param settlementTime 开票时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_time")
|
@JSONField(name = "settlement_time")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserId 开票用户id
|
* @param settlementUserId 开票用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_id")
|
@JSONField(name = "settlement_user_id")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserName 开票用户姓名
|
* @param settlementUserName 开票用户姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_name")
|
@JSONField(name = "settlement_user_name")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invalidTime 作废时间
|
* @param invalidTime 作废时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invalid_time")
|
@JSONField(name = "invalid_time")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invalidUserId 作废用户id
|
* @param invalidUserId 作废用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invalid_user_id")
|
@JSONField(name = "invalid_user_id")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invalidUserName 作废用户姓名
|
* @param invalidUserName 作废用户姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invalid_user_name")
|
@JSONField(name = "invalid_user_name")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invalidMemo 作废说明
|
* @param invalidMemo 作废说明
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invalid_memo")
|
@JSONField(name = "invalid_memo")
|
||||||
|
|
@ -312,6 +325,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param orderSn 关联订单号,方便查询
|
* @param orderSn 关联订单号,方便查询
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "order_sn")
|
@JSONField(name = "order_sn")
|
||||||
|
|
@ -334,6 +348,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param type 1、2、3、4、5
|
* @param type 1、2、3、4、5
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
|
|
@ -356,6 +371,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param invoiceType 1.普票,2.专票
|
* @param invoiceType 1.普票,2.专票
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_type")
|
@JSONField(name = "invoice_type")
|
||||||
|
|
@ -378,6 +394,7 @@ public abstract class BaseInvoiceLog<M extends BaseInvoiceLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invoiceNumber 发票代码
|
* @param invoiceNumber 发票代码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_number")
|
@JSONField(name = "invoice_number")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param surplus 剩余数量
|
* @param surplus 剩余数量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "surplus")
|
@JSONField(name = "surplus")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param startCode 发票起始号码
|
* @param startCode 发票起始号码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "start_code")
|
@JSONField(name = "start_code")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param endCode 发票截止号码
|
* @param endCode 发票截止号码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "end_code")
|
@JSONField(name = "end_code")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param currentCode 当前使用到的发票号码
|
* @param currentCode 当前使用到的发票号码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "current_code")
|
@JSONField(name = "current_code")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 创建时间
|
* @param createTime 创建时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param receiveUserId 领取用户id
|
* @param receiveUserId 领取用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "receive_user_id")
|
@JSONField(name = "receive_user_id")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param receiveUserName 领取用户姓名
|
* @param receiveUserName 领取用户姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "receive_user_name")
|
@JSONField(name = "receive_user_name")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 领取超市id
|
* @param supermarketId 领取超市id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param invoiceType 1.普票,2.专票
|
* @param invoiceType 1.普票,2.专票
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_type")
|
@JSONField(name = "invoice_type")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invoiceNumber 发票代码
|
* @param invoiceNumber 发票代码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_number")
|
@JSONField(name = "invoice_number")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseInvoiceReceive<M extends BaseInvoiceReceive<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param invalidCount 作废数量
|
* @param invalidCount 作废数量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invalid_count")
|
@JSONField(name = "invalid_count")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId 创建用户id
|
* @param createUserId 创建用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param table 修改的数据表名
|
* @param table 修改的数据表名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "table")
|
@JSONField(name = "table")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param pks 主键数组,兼容复合主键
|
* @param pks 主键数组,兼容复合主键
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "pks")
|
@JSONField(name = "pks")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param newdata 修改后的数据
|
* @param newdata 修改后的数据
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "newdata")
|
@JSONField(name = "newdata")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param olddata 修改前的数据
|
* @param olddata 修改前的数据
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "olddata")
|
@JSONField(name = "olddata")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param editdata 只记录修改的部分,包含主键
|
* @param editdata 只记录修改的部分,包含主键
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "editdata")
|
@JSONField(name = "editdata")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param type 1.新增、2.修改、3.删除
|
* @param type 1.新增、2.修改、3.删除
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseModifyLog<M extends BaseModifyLog<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 最后修改时间
|
* @param createTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sn")
|
@JSONField(name = "sn")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param uuid UUID 唯一验证
|
* @param uuid UUID 唯一验证
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "uuid")
|
@JSONField(name = "uuid")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transportId 出入场记录id
|
* @param transportId 出入场记录id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "transport_id")
|
@JSONField(name = "transport_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param purchaseId 砂场(采购点)id
|
* @param purchaseId 砂场(采购点)id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "purchase_id")
|
@JSONField(name = "purchase_id")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param weight 运输重量
|
* @param weight 运输重量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "weight")
|
@JSONField(name = "weight")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sourceWeight 底单重量,从采购点出场的重量
|
* @param sourceWeight 底单重量,从采购点出场的重量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "source_weight")
|
@JSONField(name = "source_weight")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 物流公司
|
* @param transCoId 物流公司
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoName
|
* @param transCoName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_name")
|
@JSONField(name = "trans_co_name")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerName 物流公司开票公司名称
|
* @param transCoTexpayerName 物流公司开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_name")
|
@JSONField(name = "trans_co_texpayer_name")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerNum
|
* @param transCoTexpayerNum
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_num")
|
@JSONField(name = "trans_co_texpayer_num")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoAddress
|
* @param transCoAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_address")
|
@JSONField(name = "trans_co_address")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoPhone
|
* @param transCoPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_phone")
|
@JSONField(name = "trans_co_phone")
|
||||||
|
|
@ -312,6 +325,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankName
|
* @param transCoBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_name")
|
@JSONField(name = "trans_co_bank_name")
|
||||||
|
|
@ -334,6 +348,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankAccount
|
* @param transCoBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_account")
|
@JSONField(name = "trans_co_bank_account")
|
||||||
|
|
@ -356,6 +371,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense 车牌号
|
* @param truckLicense 车牌号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -378,14 +394,14 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 1,初始状态;
|
* @param state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(
|
* 4,已离场(
|
||||||
后台自动设置)
|
* 后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public void setState(Integer state) {
|
public void setState(Integer state) {
|
||||||
|
|
@ -395,13 +411,12 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return state 1,初始状态;
|
* @return state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(
|
* 4,已离场(
|
||||||
后台自动设置)
|
* 后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public Integer getState() {
|
public Integer getState() {
|
||||||
|
|
@ -414,6 +429,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transDistance 运距
|
* @param transDistance 运距
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_distance")
|
@JSONField(name = "trans_distance")
|
||||||
|
|
@ -436,6 +452,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transPrice 运费
|
* @param transPrice 运费
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_price")
|
@JSONField(name = "trans_price")
|
||||||
|
|
@ -458,6 +475,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transUnitPrice 运输单价
|
* @param transUnitPrice 运输单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_unit_price")
|
@JSONField(name = "trans_unit_price")
|
||||||
|
|
@ -480,6 +498,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createTime
|
* @param createTime
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -502,6 +521,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId
|
* @param createUserId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -524,6 +544,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -546,6 +567,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserId 结算用户id
|
* @param settlementUserId 结算用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_id")
|
@JSONField(name = "settlement_user_id")
|
||||||
|
|
@ -568,6 +590,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserName 结算用户名
|
* @param settlementUserName 结算用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_name")
|
@JSONField(name = "settlement_user_name")
|
||||||
|
|
@ -590,6 +613,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -612,6 +636,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 品类id
|
* @param productId 品类id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -634,6 +659,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productName 品类名称
|
* @param productName 品类名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_name")
|
@JSONField(name = "product_name")
|
||||||
|
|
@ -656,6 +682,7 @@ public abstract class BaseOrderPurchase<M extends BaseOrderPurchase<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param oldSn 兼容旧系统的数据
|
* @param oldSn 兼容旧系统的数据
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "old_sn")
|
@JSONField(name = "old_sn")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sn")
|
@JSONField(name = "sn")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param uuid UUID 唯一验证,避免重复提交
|
* @param uuid UUID 唯一验证,避免重复提交
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "uuid")
|
@JSONField(name = "uuid")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transportId 出入场记录id
|
* @param transportId 出入场记录id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "transport_id")
|
@JSONField(name = "transport_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId
|
* @param customerId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerName
|
* @param customerName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_name")
|
@JSONField(name = "customer_name")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerTexpayerName 客户开票公司名称
|
* @param customerTexpayerName 客户开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_texpayer_name")
|
@JSONField(name = "customer_texpayer_name")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerTexpayerNum 客户纳税人识别号
|
* @param customerTexpayerNum 客户纳税人识别号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_texpayer_num")
|
@JSONField(name = "customer_texpayer_num")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerAddress
|
* @param customerAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_address")
|
@JSONField(name = "customer_address")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerPhone
|
* @param customerPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_phone")
|
@JSONField(name = "customer_phone")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerBankName
|
* @param customerBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_bank_name")
|
@JSONField(name = "customer_bank_name")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerBankAccount
|
* @param customerBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_bank_account")
|
@JSONField(name = "customer_bank_account")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverName 收货人
|
* @param customerReceiverName 收货人
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_name")
|
@JSONField(name = "customer_receiver_name")
|
||||||
|
|
@ -312,6 +325,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverPhone 收货人电话
|
* @param customerReceiverPhone 收货人电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_phone")
|
@JSONField(name = "customer_receiver_phone")
|
||||||
|
|
@ -334,6 +348,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverAddress 送货地址
|
* @param customerReceiverAddress 送货地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_address")
|
@JSONField(name = "customer_receiver_address")
|
||||||
|
|
@ -356,6 +371,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverLgtd 收货地址经度
|
* @param customerReceiverLgtd 收货地址经度
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_lgtd")
|
@JSONField(name = "customer_receiver_lgtd")
|
||||||
|
|
@ -378,6 +394,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverLttd 收货地址纬度
|
* @param customerReceiverLttd 收货地址纬度
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_lttd")
|
@JSONField(name = "customer_receiver_lttd")
|
||||||
|
|
@ -400,6 +417,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 物流公司
|
* @param transCoId 物流公司
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -422,6 +440,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoName
|
* @param transCoName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_name")
|
@JSONField(name = "trans_co_name")
|
||||||
|
|
@ -444,6 +463,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerName 物流公司开票公司名称
|
* @param transCoTexpayerName 物流公司开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_name")
|
@JSONField(name = "trans_co_texpayer_name")
|
||||||
|
|
@ -466,6 +486,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerNum
|
* @param transCoTexpayerNum
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_num")
|
@JSONField(name = "trans_co_texpayer_num")
|
||||||
|
|
@ -488,6 +509,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoAddress
|
* @param transCoAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_address")
|
@JSONField(name = "trans_co_address")
|
||||||
|
|
@ -510,6 +532,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoPhone
|
* @param transCoPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_phone")
|
@JSONField(name = "trans_co_phone")
|
||||||
|
|
@ -532,6 +555,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankName
|
* @param transCoBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_name")
|
@JSONField(name = "trans_co_bank_name")
|
||||||
|
|
@ -554,6 +578,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankAccount
|
* @param transCoBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_account")
|
@JSONField(name = "trans_co_bank_account")
|
||||||
|
|
@ -576,6 +601,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense 车牌号
|
* @param truckLicense 车牌号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -598,6 +624,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param driverName 司机姓名
|
* @param driverName 司机姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "driver_name")
|
@JSONField(name = "driver_name")
|
||||||
|
|
@ -620,6 +647,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param driverPhone 司机手机号
|
* @param driverPhone 司机手机号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "driver_phone")
|
@JSONField(name = "driver_phone")
|
||||||
|
|
@ -642,6 +670,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitPrice 单价
|
* @param unitPrice 单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_price")
|
@JSONField(name = "unit_price")
|
||||||
|
|
@ -664,6 +693,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param totalPrice 总价,应付金额
|
* @param totalPrice 总价,应付金额
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "total_price")
|
@JSONField(name = "total_price")
|
||||||
|
|
@ -686,6 +716,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param weight 购买重量
|
* @param weight 购买重量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "weight")
|
@JSONField(name = "weight")
|
||||||
|
|
@ -708,6 +739,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param paid 实际支付金额
|
* @param paid 实际支付金额
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "paid")
|
@JSONField(name = "paid")
|
||||||
|
|
@ -730,6 +762,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param pickTime 提货时间
|
* @param pickTime 提货时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "pick_time")
|
@JSONField(name = "pick_time")
|
||||||
|
|
@ -752,6 +785,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transDistance 运距
|
* @param transDistance 运距
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_distance")
|
@JSONField(name = "trans_distance")
|
||||||
|
|
@ -774,6 +808,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transPrice 运费
|
* @param transPrice 运费
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_price")
|
@JSONField(name = "trans_price")
|
||||||
|
|
@ -796,6 +831,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transUnitPrice 运输单价
|
* @param transUnitPrice 运输单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_unit_price")
|
@JSONField(name = "trans_unit_price")
|
||||||
|
|
@ -818,6 +854,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param payType 支付方式: 1,现场支付; 2,在线支付
|
* @param payType 支付方式: 1,现场支付; 2,在线支付
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "pay_type")
|
@JSONField(name = "pay_type")
|
||||||
|
|
@ -840,6 +877,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createTime
|
* @param createTime
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -862,6 +900,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId 创建用户id
|
* @param createUserId 创建用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -884,6 +923,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -906,6 +946,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserId 结算用户id
|
* @param settlementUserId 结算用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_id")
|
@JSONField(name = "settlement_user_id")
|
||||||
|
|
@ -928,6 +969,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserName 结算用户名
|
* @param settlementUserName 结算用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_name")
|
@JSONField(name = "settlement_user_name")
|
||||||
|
|
@ -950,13 +992,13 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 1,初始状态;
|
* @param state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(后台自动设置)
|
* 4,已离场(后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public void setState(Integer state) {
|
public void setState(Integer state) {
|
||||||
|
|
@ -966,12 +1008,11 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return state 1,初始状态;
|
* @return state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(后台自动设置)
|
* 4,已离场(后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public Integer getState() {
|
public Integer getState() {
|
||||||
|
|
@ -984,6 +1025,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param reqReceipt 是否需要发票,0 默认不需要,1需要
|
* @param reqReceipt 是否需要发票,0 默认不需要,1需要
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "req_receipt")
|
@JSONField(name = "req_receipt")
|
||||||
|
|
@ -1006,6 +1048,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param orderclusterId ordercluste id
|
* @param orderclusterId ordercluste id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "ordercluster_id")
|
@JSONField(name = "ordercluster_id")
|
||||||
|
|
@ -1028,6 +1071,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -1050,6 +1094,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param isprepaid 是否已预付,在结算时勾选
|
* @param isprepaid 是否已预付,在结算时勾选
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "isprepaid")
|
@JSONField(name = "isprepaid")
|
||||||
|
|
@ -1072,6 +1117,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo 备注
|
* @param memo 备注
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -1094,6 +1140,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 品类id
|
* @param productId 品类id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -1116,6 +1163,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productName 品类名称
|
* @param productName 品类名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_name")
|
@JSONField(name = "product_name")
|
||||||
|
|
@ -1138,6 +1186,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param prepayCustomerId 预付费客户 prepay_customer 表的id
|
* @param prepayCustomerId 预付费客户 prepay_customer 表的id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "prepay_customer_id")
|
@JSONField(name = "prepay_customer_id")
|
||||||
|
|
@ -1160,6 +1209,7 @@ public abstract class BaseOrderSale<M extends BaseOrderSale<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invoiceCode 发票号码
|
* @param invoiceCode 发票号码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_code")
|
@JSONField(name = "invoice_code")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseOrderSeq<M extends BaseOrderSeq<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param tm 日期
|
* @param tm 日期
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "tm")
|
@JSONField(name = "tm")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseOrderSeq<M extends BaseOrderSeq<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseOrderSeq<M extends BaseOrderSeq<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param type 订单类型
|
* @param type 订单类型
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseOrderSeq<M extends BaseOrderSeq<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param seq 序列号
|
* @param seq 序列号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "seq")
|
@JSONField(name = "seq")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sn")
|
@JSONField(name = "sn")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param uuid UUID 唯一验证
|
* @param uuid UUID 唯一验证
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "uuid")
|
@JSONField(name = "uuid")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transportId 出入场记录id
|
* @param transportId 出入场记录id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "transport_id")
|
@JSONField(name = "transport_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 超市id
|
* @param supermarketId 超市id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param weight 购买重量
|
* @param weight 购买重量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "weight")
|
@JSONField(name = "weight")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense 车牌号
|
* @param truckLicense 车牌号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -158,14 +164,14 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 1,初始状态;
|
* @param state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(
|
* 4,已离场(
|
||||||
后台自动设置)(扩展,已生成待支付订单)
|
* 后台自动设置)(扩展,已生成待支付订单)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public void setState(Integer state) {
|
public void setState(Integer state) {
|
||||||
|
|
@ -175,13 +181,12 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return state 1,初始状态;
|
* @return state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(
|
* 4,已离场(
|
||||||
后台自动设置)(扩展,已生成待支付订单)
|
* 后台自动设置)(扩展,已生成待支付订单)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public Integer getState() {
|
public Integer getState() {
|
||||||
|
|
@ -194,6 +199,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createTime 创建时间
|
* @param createTime 创建时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -216,6 +222,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId 创建用户id
|
* @param createUserId 创建用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -238,6 +245,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -260,6 +268,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserId 结算用户id
|
* @param settlementUserId 结算用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_id")
|
@JSONField(name = "settlement_user_id")
|
||||||
|
|
@ -282,6 +291,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserName 结算用户名
|
* @param settlementUserName 结算用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_name")
|
@JSONField(name = "settlement_user_name")
|
||||||
|
|
@ -304,6 +314,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitPrice 单价
|
* @param unitPrice 单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_price")
|
@JSONField(name = "unit_price")
|
||||||
|
|
@ -326,6 +337,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param totalPrice 总价,应付费
|
* @param totalPrice 总价,应付费
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "total_price")
|
@JSONField(name = "total_price")
|
||||||
|
|
@ -348,6 +360,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param paid 实际支付金额
|
* @param paid 实际支付金额
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "paid")
|
@JSONField(name = "paid")
|
||||||
|
|
@ -370,6 +383,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param payType 支付方式: 1,现场支付; 2,在线支付
|
* @param payType 支付方式: 1,现场支付; 2,在线支付
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "pay_type")
|
@JSONField(name = "pay_type")
|
||||||
|
|
@ -392,6 +406,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -414,6 +429,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param isprepaid 是否已预付,在结算时勾选
|
* @param isprepaid 是否已预付,在结算时勾选
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "isprepaid")
|
@JSONField(name = "isprepaid")
|
||||||
|
|
@ -436,6 +452,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo 备注
|
* @param memo 备注
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -458,6 +475,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId
|
* @param customerId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -480,6 +498,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerName
|
* @param customerName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_name")
|
@JSONField(name = "customer_name")
|
||||||
|
|
@ -502,6 +521,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerTexpayerName 客户开票公司名称
|
* @param customerTexpayerName 客户开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_texpayer_name")
|
@JSONField(name = "customer_texpayer_name")
|
||||||
|
|
@ -524,6 +544,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerTexpayerNum 客户纳税人识别号
|
* @param customerTexpayerNum 客户纳税人识别号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_texpayer_num")
|
@JSONField(name = "customer_texpayer_num")
|
||||||
|
|
@ -546,6 +567,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerAddress
|
* @param customerAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_address")
|
@JSONField(name = "customer_address")
|
||||||
|
|
@ -568,6 +590,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerPhone
|
* @param customerPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_phone")
|
@JSONField(name = "customer_phone")
|
||||||
|
|
@ -590,6 +613,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerBankName
|
* @param customerBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_bank_name")
|
@JSONField(name = "customer_bank_name")
|
||||||
|
|
@ -612,6 +636,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerBankAccount
|
* @param customerBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_bank_account")
|
@JSONField(name = "customer_bank_account")
|
||||||
|
|
@ -634,6 +659,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverName 收货人
|
* @param customerReceiverName 收货人
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_name")
|
@JSONField(name = "customer_receiver_name")
|
||||||
|
|
@ -656,6 +682,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverPhone 收货人电话
|
* @param customerReceiverPhone 收货人电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_phone")
|
@JSONField(name = "customer_receiver_phone")
|
||||||
|
|
@ -678,6 +705,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverAddress 送货地址
|
* @param customerReceiverAddress 送货地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_address")
|
@JSONField(name = "customer_receiver_address")
|
||||||
|
|
@ -700,6 +728,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverLgtd 收货地址经度
|
* @param customerReceiverLgtd 收货地址经度
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_lgtd")
|
@JSONField(name = "customer_receiver_lgtd")
|
||||||
|
|
@ -722,6 +751,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverLttd 收货地址纬度
|
* @param customerReceiverLttd 收货地址纬度
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_lttd")
|
@JSONField(name = "customer_receiver_lttd")
|
||||||
|
|
@ -744,6 +774,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 物流公司
|
* @param transCoId 物流公司
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -766,6 +797,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoName
|
* @param transCoName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_name")
|
@JSONField(name = "trans_co_name")
|
||||||
|
|
@ -788,6 +820,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerName 物流公司开票公司名称
|
* @param transCoTexpayerName 物流公司开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_name")
|
@JSONField(name = "trans_co_texpayer_name")
|
||||||
|
|
@ -810,6 +843,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerNum
|
* @param transCoTexpayerNum
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_num")
|
@JSONField(name = "trans_co_texpayer_num")
|
||||||
|
|
@ -832,6 +866,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoAddress
|
* @param transCoAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_address")
|
@JSONField(name = "trans_co_address")
|
||||||
|
|
@ -854,6 +889,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoPhone
|
* @param transCoPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_phone")
|
@JSONField(name = "trans_co_phone")
|
||||||
|
|
@ -876,6 +912,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankName
|
* @param transCoBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_name")
|
@JSONField(name = "trans_co_bank_name")
|
||||||
|
|
@ -898,6 +935,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankAccount
|
* @param transCoBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_account")
|
@JSONField(name = "trans_co_bank_account")
|
||||||
|
|
@ -920,6 +958,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 品类id
|
* @param productId 品类id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -942,6 +981,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productName 品类名称
|
* @param productName 品类名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_name")
|
@JSONField(name = "product_name")
|
||||||
|
|
@ -964,6 +1004,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param orderclusterId ordercluste id
|
* @param orderclusterId ordercluste id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "ordercluster_id")
|
@JSONField(name = "ordercluster_id")
|
||||||
|
|
@ -986,6 +1027,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param prepayCustomerId 预付费客户 prepay_customer 表的id
|
* @param prepayCustomerId 预付费客户 prepay_customer 表的id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "prepay_customer_id")
|
@JSONField(name = "prepay_customer_id")
|
||||||
|
|
@ -1008,6 +1050,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param oldSn 兼容旧系统的数据
|
* @param oldSn 兼容旧系统的数据
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "old_sn")
|
@JSONField(name = "old_sn")
|
||||||
|
|
@ -1030,6 +1073,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invoiceCode 发票号码
|
* @param invoiceCode 发票号码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_code")
|
@JSONField(name = "invoice_code")
|
||||||
|
|
@ -1052,6 +1096,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param invoiceNumber 发票代码
|
* @param invoiceNumber 发票代码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_number")
|
@JSONField(name = "invoice_number")
|
||||||
|
|
@ -1074,6 +1119,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param invoiceType 1.普票,2.专票
|
* @param invoiceType 1.普票,2.专票
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_type")
|
@JSONField(name = "invoice_type")
|
||||||
|
|
@ -1096,6 +1142,7 @@ public abstract class BaseOrderTemp<M extends BaseOrderTemp<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param invoiceSite 1.砂站,2.结算中心
|
* @param invoiceSite 1.砂站,2.结算中心
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_site")
|
@JSONField(name = "invoice_site")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sn")
|
@JSONField(name = "sn")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param uuid UUID 唯一验证
|
* @param uuid UUID 唯一验证
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "uuid")
|
@JSONField(name = "uuid")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transportId 出入场记录id
|
* @param transportId 出入场记录id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "transport_id")
|
@JSONField(name = "transport_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sandfarmId 砂场id
|
* @param sandfarmId 砂场id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sandfarm_id")
|
@JSONField(name = "sandfarm_id")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param weight 运输重量
|
* @param weight 运输重量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "weight")
|
@JSONField(name = "weight")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sourceWeight 底单重量,从采砂点出场的重量
|
* @param sourceWeight 底单重量,从采砂点出场的重量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "source_weight")
|
@JSONField(name = "source_weight")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 物流公司
|
* @param transCoId 物流公司
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoName
|
* @param transCoName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_name")
|
@JSONField(name = "trans_co_name")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerName 物流公司开票公司名称
|
* @param transCoTexpayerName 物流公司开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_name")
|
@JSONField(name = "trans_co_texpayer_name")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerNum
|
* @param transCoTexpayerNum
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_num")
|
@JSONField(name = "trans_co_texpayer_num")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoAddress
|
* @param transCoAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_address")
|
@JSONField(name = "trans_co_address")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoPhone
|
* @param transCoPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_phone")
|
@JSONField(name = "trans_co_phone")
|
||||||
|
|
@ -312,6 +325,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankName
|
* @param transCoBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_name")
|
@JSONField(name = "trans_co_bank_name")
|
||||||
|
|
@ -334,6 +348,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankAccount
|
* @param transCoBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_account")
|
@JSONField(name = "trans_co_bank_account")
|
||||||
|
|
@ -356,6 +371,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense 车牌号
|
* @param truckLicense 车牌号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -378,14 +394,14 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 1,初始状态;
|
* @param state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(
|
* 4,已离场(
|
||||||
后台自动设置)
|
* 后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public void setState(Integer state) {
|
public void setState(Integer state) {
|
||||||
|
|
@ -395,13 +411,12 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return state 1,初始状态;
|
* @return state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(
|
* 4,已离场(
|
||||||
后台自动设置)
|
* 后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public Integer getState() {
|
public Integer getState() {
|
||||||
|
|
@ -414,6 +429,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transDistance 运距
|
* @param transDistance 运距
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_distance")
|
@JSONField(name = "trans_distance")
|
||||||
|
|
@ -436,6 +452,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transPrice 运费
|
* @param transPrice 运费
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_price")
|
@JSONField(name = "trans_price")
|
||||||
|
|
@ -458,6 +475,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transUnitPrice 运输单价
|
* @param transUnitPrice 运输单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_unit_price")
|
@JSONField(name = "trans_unit_price")
|
||||||
|
|
@ -480,6 +498,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createTime
|
* @param createTime
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -502,6 +521,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId
|
* @param createUserId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -524,6 +544,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -546,6 +567,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserId 结算用户id
|
* @param settlementUserId 结算用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_id")
|
@JSONField(name = "settlement_user_id")
|
||||||
|
|
@ -568,6 +590,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserName 结算用户名
|
* @param settlementUserName 结算用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_name")
|
@JSONField(name = "settlement_user_name")
|
||||||
|
|
@ -590,6 +613,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -612,6 +636,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 品类id
|
* @param productId 品类id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -634,6 +659,7 @@ public abstract class BaseOrderTransfer<M extends BaseOrderTransfer<M>> extends
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productName 品类名称
|
* @param productName 品类名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_name")
|
@JSONField(name = "product_name")
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||||
* Generated by COWR Fri May 01 22:23:27 CST 2020
|
* Generated by COWR Fri May 01 22:23:27 CST 2020
|
||||||
* TableName: order_trash
|
* TableName: order_trash
|
||||||
* Remarks: 订单相关 - 废料运出单
|
* Remarks: 订单相关 - 废料运出单
|
||||||
|
* <p>
|
||||||
* PrimaryKey: sn
|
* PrimaryKey: sn
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
@ -27,6 +27,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
* @param sn YYYYMMDD + 两位销售点id(避免离线生成订单号重复) + 两位订单类型 + 四位序列号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sn")
|
@JSONField(name = "sn")
|
||||||
|
|
@ -49,6 +50,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param uuid UUID 唯一验证
|
* @param uuid UUID 唯一验证
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "uuid")
|
@JSONField(name = "uuid")
|
||||||
|
|
@ -71,6 +73,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transportId 出入场记录id
|
* @param transportId 出入场记录id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "transport_id")
|
@JSONField(name = "transport_id")
|
||||||
|
|
@ -93,6 +96,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -115,6 +119,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param weight 重量
|
* @param weight 重量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "weight")
|
@JSONField(name = "weight")
|
||||||
|
|
@ -137,6 +142,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense 车牌号
|
* @param truckLicense 车牌号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -159,14 +165,14 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 1,初始状态;
|
* @param state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(
|
* 4,已离场(
|
||||||
后台自动设置)
|
* 后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public void setState(Integer state) {
|
public void setState(Integer state) {
|
||||||
|
|
@ -176,13 +182,12 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return state 1,初始状态;
|
* @return state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(
|
* 4,已离场(
|
||||||
后台自动设置)
|
* 后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public Integer getState() {
|
public Integer getState() {
|
||||||
|
|
@ -195,6 +200,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transDistance 运距
|
* @param transDistance 运距
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_distance")
|
@JSONField(name = "trans_distance")
|
||||||
|
|
@ -217,6 +223,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transPrice 运费
|
* @param transPrice 运费
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_price")
|
@JSONField(name = "trans_price")
|
||||||
|
|
@ -239,6 +246,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transUnitPrice 运输单价
|
* @param transUnitPrice 运输单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_unit_price")
|
@JSONField(name = "trans_unit_price")
|
||||||
|
|
@ -261,6 +269,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createTime
|
* @param createTime
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -283,6 +292,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId
|
* @param createUserId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -305,6 +315,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -327,6 +338,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserId 结算用户id
|
* @param settlementUserId 结算用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_id")
|
@JSONField(name = "settlement_user_id")
|
||||||
|
|
@ -349,6 +361,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param settlementUserName 结算用户名
|
* @param settlementUserName 结算用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "settlement_user_name")
|
@JSONField(name = "settlement_user_name")
|
||||||
|
|
@ -371,6 +384,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -393,6 +407,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 品类id
|
* @param productId 品类id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -415,6 +430,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productName 品类名称
|
* @param productName 品类名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_name")
|
@JSONField(name = "product_name")
|
||||||
|
|
@ -437,6 +453,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 物流公司
|
* @param transCoId 物流公司
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -459,6 +476,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoName
|
* @param transCoName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_name")
|
@JSONField(name = "trans_co_name")
|
||||||
|
|
@ -481,6 +499,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerName 物流公司开票公司名称
|
* @param transCoTexpayerName 物流公司开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_name")
|
@JSONField(name = "trans_co_texpayer_name")
|
||||||
|
|
@ -503,6 +522,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerNum
|
* @param transCoTexpayerNum
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_num")
|
@JSONField(name = "trans_co_texpayer_num")
|
||||||
|
|
@ -525,6 +545,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoAddress
|
* @param transCoAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_address")
|
@JSONField(name = "trans_co_address")
|
||||||
|
|
@ -547,6 +568,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoPhone
|
* @param transCoPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_phone")
|
@JSONField(name = "trans_co_phone")
|
||||||
|
|
@ -569,6 +591,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankName
|
* @param transCoBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_name")
|
@JSONField(name = "trans_co_bank_name")
|
||||||
|
|
@ -591,6 +614,7 @@ public abstract class BaseOrderTrash<M extends BaseOrderTrash<M>> extends BaseMo
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankAccount
|
* @param transCoBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_account")
|
@JSONField(name = "trans_co_bank_account")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id 主键
|
* @param id 主键
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param uuid UUID 唯一验证
|
* @param uuid UUID 唯一验证
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "uuid")
|
@JSONField(name = "uuid")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param totalWeight 总量
|
* @param totalWeight 总量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "total_weight")
|
@JSONField(name = "total_weight")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param avgWeight 预估每车重量,根据这个生成订单。实际结算已净重为准
|
* @param avgWeight 预估每车重量,根据这个生成订单。实际结算已净重为准
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "avg_weight")
|
@JSONField(name = "avg_weight")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createTime 下单时间
|
* @param createTime 下单时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param cutoffTime 客户要求的送货截止时间(限定的执行日期,只能在执行当前进行)
|
* @param cutoffTime 客户要求的送货截止时间(限定的执行日期,只能在执行当前进行)
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "cutoff_time")
|
@JSONField(name = "cutoff_time")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param completeTime 实际完成时间
|
* @param completeTime 实际完成时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "complete_time")
|
@JSONField(name = "complete_time")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitPrice 单价,以实际结算时的商品单价为准
|
* @param unitPrice 单价,以实际结算时的商品单价为准
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_price")
|
@JSONField(name = "unit_price")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param state 1.新建, 2.执行中 5.完成,9.取消
|
* @param state 1.新建, 2.执行中 5.完成,9.取消
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transDistance 运距
|
* @param transDistance 运距
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_distance")
|
@JSONField(name = "trans_distance")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param payType 支付方式: 1,现场支付; 2,在线支付
|
* @param payType 支付方式: 1,现场支付; 2,在线支付
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "pay_type")
|
@JSONField(name = "pay_type")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId 创建该记录的用户id
|
* @param createUserId 创建该记录的用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -312,6 +325,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -334,6 +348,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param reqReceipt 是否需要发票,0 默认不需要,1需要
|
* @param reqReceipt 是否需要发票,0 默认不需要,1需要
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "req_receipt")
|
@JSONField(name = "req_receipt")
|
||||||
|
|
@ -356,6 +371,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -378,6 +394,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 品类id
|
* @param productId 品类id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -400,6 +417,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productName 品类名称
|
* @param productName 品类名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_name")
|
@JSONField(name = "product_name")
|
||||||
|
|
@ -422,6 +440,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId
|
* @param customerId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -444,6 +463,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerName
|
* @param customerName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_name")
|
@JSONField(name = "customer_name")
|
||||||
|
|
@ -466,6 +486,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerTexpayerName 客户开票公司名称
|
* @param customerTexpayerName 客户开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_texpayer_name")
|
@JSONField(name = "customer_texpayer_name")
|
||||||
|
|
@ -488,6 +509,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerTexpayerNum 客户纳税人识别号
|
* @param customerTexpayerNum 客户纳税人识别号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_texpayer_num")
|
@JSONField(name = "customer_texpayer_num")
|
||||||
|
|
@ -510,6 +532,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerAddress
|
* @param customerAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_address")
|
@JSONField(name = "customer_address")
|
||||||
|
|
@ -532,6 +555,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerPhone
|
* @param customerPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_phone")
|
@JSONField(name = "customer_phone")
|
||||||
|
|
@ -554,6 +578,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerBankName
|
* @param customerBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_bank_name")
|
@JSONField(name = "customer_bank_name")
|
||||||
|
|
@ -576,6 +601,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerBankAccount
|
* @param customerBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_bank_account")
|
@JSONField(name = "customer_bank_account")
|
||||||
|
|
@ -598,6 +624,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverName 收货人
|
* @param customerReceiverName 收货人
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_name")
|
@JSONField(name = "customer_receiver_name")
|
||||||
|
|
@ -620,6 +647,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverPhone 收货人电话
|
* @param customerReceiverPhone 收货人电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_phone")
|
@JSONField(name = "customer_receiver_phone")
|
||||||
|
|
@ -642,6 +670,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverAddress 送货地址
|
* @param customerReceiverAddress 送货地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_address")
|
@JSONField(name = "customer_receiver_address")
|
||||||
|
|
@ -664,6 +693,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverLgtd 收货地址经度
|
* @param customerReceiverLgtd 收货地址经度
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_lgtd")
|
@JSONField(name = "customer_receiver_lgtd")
|
||||||
|
|
@ -686,6 +716,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverLttd 收货地址纬度
|
* @param customerReceiverLttd 收货地址纬度
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_lttd")
|
@JSONField(name = "customer_receiver_lttd")
|
||||||
|
|
@ -708,6 +739,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 物流公司
|
* @param transCoId 物流公司
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -730,6 +762,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoName
|
* @param transCoName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_name")
|
@JSONField(name = "trans_co_name")
|
||||||
|
|
@ -752,6 +785,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerName 物流公司开票公司名称
|
* @param transCoTexpayerName 物流公司开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_name")
|
@JSONField(name = "trans_co_texpayer_name")
|
||||||
|
|
@ -774,6 +808,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerNum
|
* @param transCoTexpayerNum
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_num")
|
@JSONField(name = "trans_co_texpayer_num")
|
||||||
|
|
@ -796,6 +831,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoAddress
|
* @param transCoAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_address")
|
@JSONField(name = "trans_co_address")
|
||||||
|
|
@ -818,6 +854,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoPhone
|
* @param transCoPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_phone")
|
@JSONField(name = "trans_co_phone")
|
||||||
|
|
@ -840,6 +877,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankName
|
* @param transCoBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_name")
|
@JSONField(name = "trans_co_bank_name")
|
||||||
|
|
@ -862,6 +900,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankAccount
|
* @param transCoBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_account")
|
@JSONField(name = "trans_co_bank_account")
|
||||||
|
|
@ -884,6 +923,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param timeInterval 1.全天,2.上午,3.下午
|
* @param timeInterval 1.全天,2.上午,3.下午
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "time_interval")
|
@JSONField(name = "time_interval")
|
||||||
|
|
@ -906,6 +946,7 @@ public abstract class BaseOrdercluster<M extends BaseOrdercluster<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param miniTruck 最少指派的车辆数
|
* @param miniTruck 最少指派的车辆数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "mini_truck")
|
@JSONField(name = "mini_truck")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseOrderclusterTruck<M extends BaseOrderclusterTruck<M>>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseOrderclusterTruck<M extends BaseOrderclusterTruck<M>>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param orderclusterId
|
* @param orderclusterId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "ordercluster_id")
|
@JSONField(name = "ordercluster_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseOrderclusterTruck<M extends BaseOrderclusterTruck<M>>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense
|
* @param truckLicense
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseOrderclusterTruck<M extends BaseOrderclusterTruck<M>>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseOssfileLog<M extends BaseOssfileLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseOssfileLog<M extends BaseOssfileLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transportId transport id
|
* @param transportId transport id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "transport_id")
|
@JSONField(name = "transport_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseOssfileLog<M extends BaseOssfileLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param state 0 待上传,1上传成功
|
* @param state 0 待上传,1上传成功
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseOssfileLog<M extends BaseOssfileLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param osskey
|
* @param osskey
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "osskey")
|
@JSONField(name = "osskey")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseOssfileLog<M extends BaseOssfileLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param absolutepath 文件绝对路径
|
* @param absolutepath 文件绝对路径
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "absolutepath")
|
@JSONField(name = "absolutepath")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseOssfileLog<M extends BaseOssfileLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createTime 创建时间
|
* @param createTime 创建时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseOssfileLog<M extends BaseOssfileLog<M>> extends BaseMo
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BasePrepayCustomer<M extends BasePrepayCustomer<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BasePrepayCustomer<M extends BasePrepayCustomer<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId 客户表 customer 的 id
|
* @param customerId 客户表 customer 的 id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BasePrepayCustomer<M extends BasePrepayCustomer<M>> extend
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BasePrepayCustomer<M extends BasePrepayCustomer<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0.00
|
* defaultValue: 0.00
|
||||||
|
*
|
||||||
* @param surplus 账户余额
|
* @param surplus 账户余额
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "surplus")
|
@JSONField(name = "surplus")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BasePrepayCustomer<M extends BasePrepayCustomer<M>> extend
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param rechargeTime 最后充值时间
|
* @param rechargeTime 最后充值时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "recharge_time")
|
@JSONField(name = "recharge_time")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BasePrepayCustomer<M extends BasePrepayCustomer<M>> extend
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param spendTime 最后消费时间
|
* @param spendTime 最后消费时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "spend_time")
|
@JSONField(name = "spend_time")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BasePrepayCustomer<M extends BasePrepayCustomer<M>> extend
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param firstRechargeTime 第一次充值时间
|
* @param firstRechargeTime 第一次充值时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "first_recharge_time")
|
@JSONField(name = "first_recharge_time")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BasePrepayCustomer<M extends BasePrepayCustomer<M>> extend
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 3000.00
|
* defaultValue: 3000.00
|
||||||
|
*
|
||||||
* @param threshold 余额预警阈值
|
* @param threshold 余额预警阈值
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "threshold")
|
@JSONField(name = "threshold")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId 客户id
|
* @param customerId 客户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0.00
|
* defaultValue: 0.00
|
||||||
|
*
|
||||||
* @param amount 充值金额
|
* @param amount 充值金额
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "amount")
|
@JSONField(name = "amount")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param contactName 联系人
|
* @param contactName 联系人
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "contact_name")
|
@JSONField(name = "contact_name")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param contactPhone 联系人电话
|
* @param contactPhone 联系人电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "contact_phone")
|
@JSONField(name = "contact_phone")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bankName 转账银行
|
* @param bankName 转账银行
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bank_name")
|
@JSONField(name = "bank_name")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bankAccount 转账人(单位)银行账号
|
* @param bankAccount 转账人(单位)银行账号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bank_account")
|
@JSONField(name = "bank_account")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param serialnum 转账付费银行流水号
|
* @param serialnum 转账付费银行流水号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "serialnum")
|
@JSONField(name = "serialnum")
|
||||||
|
|
@ -224,10 +233,11 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 付费状态。
|
* @param state 付费状态。
|
||||||
1.提交、待审核,不计入余额
|
* 1.提交、待审核,不计入余额
|
||||||
2.审核通过,计入余额
|
* 2.审核通过,计入余额
|
||||||
9.作废
|
* 9.作废
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public void setState(Integer state) {
|
public void setState(Integer state) {
|
||||||
|
|
@ -237,9 +247,9 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return state 付费状态。
|
* @return state 付费状态。
|
||||||
1.提交、待审核,不计入余额
|
* 1.提交、待审核,不计入余额
|
||||||
2.审核通过,计入余额
|
* 2.审核通过,计入余额
|
||||||
9.作废
|
* 9.作废
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public Integer getState() {
|
public Integer getState() {
|
||||||
|
|
@ -252,6 +262,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -274,6 +285,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 创建时间
|
* @param createTime 创建时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -296,6 +308,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param verifyTime 审核时间,不论审核是否通过都更新
|
* @param verifyTime 审核时间,不论审核是否通过都更新
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "verify_time")
|
@JSONField(name = "verify_time")
|
||||||
|
|
@ -318,6 +331,7 @@ public abstract class BasePrepayDetail<M extends BasePrepayDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param type 1 正常充值,2 结算时补差额
|
* @param type 1 正常充值,2 结算时补差额
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||||
* Generated by COWR Mon May 18 15:39:47 CST 2020
|
* Generated by COWR Mon May 18 15:39:47 CST 2020
|
||||||
* TableName: prepay_detail_state_history
|
* TableName: prepay_detail_state_history
|
||||||
* Remarks: 客户相关 - 客户预付费记录状态变化日志
|
* Remarks: 客户相关 - 客户预付费记录状态变化日志
|
||||||
|
* <p>
|
||||||
* PrimaryKey: id
|
* PrimaryKey: id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
@ -27,6 +27,7 @@ public abstract class BasePrepayDetailStateHistory<M extends BasePrepayDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -49,6 +50,7 @@ public abstract class BasePrepayDetailStateHistory<M extends BasePrepayDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param prepayDetailId prepay_detail id
|
* @param prepayDetailId prepay_detail id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "prepay_detail_id")
|
@JSONField(name = "prepay_detail_id")
|
||||||
|
|
@ -71,6 +73,7 @@ public abstract class BasePrepayDetailStateHistory<M extends BasePrepayDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param state 变化后的状态值
|
* @param state 变化后的状态值
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
|
|
@ -93,6 +96,7 @@ public abstract class BasePrepayDetailStateHistory<M extends BasePrepayDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param changeTime 状态变化时间
|
* @param changeTime 状态变化时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -115,6 +119,7 @@ public abstract class BasePrepayDetailStateHistory<M extends BasePrepayDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param changeUserId 操作用户id
|
* @param changeUserId 操作用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_user_id")
|
@JSONField(name = "change_user_id")
|
||||||
|
|
@ -137,6 +142,7 @@ public abstract class BasePrepayDetailStateHistory<M extends BasePrepayDetailSta
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param changeUserName 操作用户姓名
|
* @param changeUserName 操作用户姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_user_name")
|
@JSONField(name = "change_user_name")
|
||||||
|
|
@ -159,6 +165,7 @@ public abstract class BasePrepayDetailStateHistory<M extends BasePrepayDetailSta
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo 备注
|
* @param memo 备注
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId 客户表 customer 的 id
|
* @param customerId 客户表 customer 的 id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense 车牌号
|
* @param truckLicense 车牌号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 物流公司
|
* @param transCoId 物流公司
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param validDate 有效日期
|
* @param validDate 有效日期
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "valid_date")
|
@JSONField(name = "valid_date")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId 创建用户id
|
* @param createUserId 创建用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名称
|
* @param createUserName 创建用户名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BasePrepayTruck<M extends BasePrepayTruck<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param type 1 配送车辆,算运费,3 外销车辆,不算运费,type 值和订单类型的type对应
|
* @param type 1 配送车辆,算运费,3 外销车辆,不算运费,type 值和订单类型的type对应
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseProduct<M extends BaseProduct<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseProduct<M extends BaseProduct<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name 商品名称
|
* @param name 商品名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseProduct<M extends BaseProduct<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del 逻辑删除标记
|
* @param del 逻辑删除标记
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name 名称
|
* @param name 名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lgtd
|
* @param lgtd
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lgtd")
|
@JSONField(name = "lgtd")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lttd
|
* @param lttd
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lttd")
|
@JSONField(name = "lttd")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param address 地址
|
* @param address 地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "address")
|
@JSONField(name = "address")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param contactName 负责人姓名
|
* @param contactName 负责人姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "contact_name")
|
@JSONField(name = "contact_name")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param contactPhone 负责人手机号
|
* @param contactPhone 负责人手机号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "contact_phone")
|
@JSONField(name = "contact_phone")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo
|
* @param memo
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del 逻辑删除标记
|
* @param del 逻辑删除标记
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BasePurchase<M extends BasePurchase<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0.00
|
* defaultValue: 0.00
|
||||||
|
*
|
||||||
* @param offset 因路况较差、在运费之外的基础上加上 净重 * 1 补贴,即最终运费: 运费单价 * 净重 + 净重 * 1
|
* @param offset 因路况较差、在运费之外的基础上加上 净重 * 1 补贴,即最终运费: 运费单价 * 净重 + 净重 * 1
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "offset")
|
@JSONField(name = "offset")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId 客户id
|
* @param customerId 客户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0.00
|
* defaultValue: 0.00
|
||||||
|
*
|
||||||
* @param amount 退费金额
|
* @param amount 退费金额
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "amount")
|
@JSONField(name = "amount")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param contactName 联系人
|
* @param contactName 联系人
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "contact_name")
|
@JSONField(name = "contact_name")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param contactPhone 联系人电话
|
* @param contactPhone 联系人电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "contact_phone")
|
@JSONField(name = "contact_phone")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bankName 转账银行
|
* @param bankName 转账银行
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bank_name")
|
@JSONField(name = "bank_name")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bankAccount 转账人(单位)银行账号
|
* @param bankAccount 转账人(单位)银行账号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bank_account")
|
@JSONField(name = "bank_account")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param serialnum 转账付费银行流水号
|
* @param serialnum 转账付费银行流水号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "serialnum")
|
@JSONField(name = "serialnum")
|
||||||
|
|
@ -224,11 +233,12 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 付费状态。
|
* @param state 付费状态。
|
||||||
1.提交、待审核,不计入余额
|
* 1.提交、待审核,不计入余额
|
||||||
2.审核通过,不计入余额
|
* 2.审核通过,不计入余额
|
||||||
3.执行退费,计入余额
|
* 3.执行退费,计入余额
|
||||||
9.作废
|
* 9.作废
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public void setState(Integer state) {
|
public void setState(Integer state) {
|
||||||
|
|
@ -238,10 +248,10 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return state 付费状态。
|
* @return state 付费状态。
|
||||||
1.提交、待审核,不计入余额
|
* 1.提交、待审核,不计入余额
|
||||||
2.审核通过,不计入余额
|
* 2.审核通过,不计入余额
|
||||||
3.执行退费,计入余额
|
* 3.执行退费,计入余额
|
||||||
9.作废
|
* 9.作废
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public Integer getState() {
|
public Integer getState() {
|
||||||
|
|
@ -254,6 +264,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -276,6 +287,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 创建时间
|
* @param createTime 创建时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -298,6 +310,7 @@ public abstract class BaseRefundDetail<M extends BaseRefundDetail<M>> extends Ba
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param verifyTime 审核时间,不论审核是否通过都更新
|
* @param verifyTime 审核时间,不论审核是否通过都更新
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "verify_time")
|
@JSONField(name = "verify_time")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseRefundDetailStateHistory<M extends BaseRefundDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseRefundDetailStateHistory<M extends BaseRefundDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param refundDetailId refund_detail id
|
* @param refundDetailId refund_detail id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "refund_detail_id")
|
@JSONField(name = "refund_detail_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseRefundDetailStateHistory<M extends BaseRefundDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param state 变化后的状态值
|
* @param state 变化后的状态值
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseRefundDetailStateHistory<M extends BaseRefundDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param changeTime 状态变化时间
|
* @param changeTime 状态变化时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseRefundDetailStateHistory<M extends BaseRefundDetailSta
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param changeUserId 操作用户id
|
* @param changeUserId 操作用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_user_id")
|
@JSONField(name = "change_user_id")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseRefundDetailStateHistory<M extends BaseRefundDetailSta
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param changeUserName 操作用户姓名
|
* @param changeUserName 操作用户姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_user_name")
|
@JSONField(name = "change_user_name")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseRefundDetailStateHistory<M extends BaseRefundDetailSta
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo 备注
|
* @param memo 备注
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name 名称
|
* @param name 名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lgtd
|
* @param lgtd
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lgtd")
|
@JSONField(name = "lgtd")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lttd
|
* @param lttd
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lttd")
|
@JSONField(name = "lttd")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param address 地址
|
* @param address 地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "address")
|
@JSONField(name = "address")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param contactName 负责人姓名
|
* @param contactName 负责人姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "contact_name")
|
@JSONField(name = "contact_name")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param contactPhone 负责人手机号
|
* @param contactPhone 负责人手机号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "contact_phone")
|
@JSONField(name = "contact_phone")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo
|
* @param memo
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del 逻辑删除标记
|
* @param del 逻辑删除标记
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseSandfarm<M extends BaseSandfarm<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0.00
|
* defaultValue: 0.00
|
||||||
|
*
|
||||||
* @param offset 因路况较差、在运费之外的基础上加上 净重 * 1 补贴,即最终运费: 运费单价 * 净重 + 净重 * 1
|
* @param offset 因路况较差、在运费之外的基础上加上 净重 * 1 补贴,即最终运费: 运费单价 * 净重 + 净重 * 1
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "offset")
|
@JSONField(name = "offset")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid
|
* @param id uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param phone 手机号
|
* @param phone 手机号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "phone")
|
@JSONField(name = "phone")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param content 发送内容json
|
* @param content 发送内容json
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "content")
|
@JSONField(name = "content")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createTime 创建时间
|
* @param createTime 创建时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bizid 发送回执ID,可根据该ID在接口QuerySendDetails中查询具体的发送状态。
|
* @param bizid 发送回执ID,可根据该ID在接口QuerySendDetails中查询具体的发送状态。
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bizid")
|
@JSONField(name = "bizid")
|
||||||
|
|
@ -158,9 +164,10 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param code 请求状态码。
|
* @param code 请求状态码。
|
||||||
|
* <p>
|
||||||
返回OK代表请求成功。
|
* 返回OK代表请求成功。
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "code")
|
@JSONField(name = "code")
|
||||||
public void setCode(String code) {
|
public void setCode(String code) {
|
||||||
|
|
@ -170,8 +177,8 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return code 请求状态码。
|
* @return code 请求状态码。
|
||||||
|
* <p>
|
||||||
返回OK代表请求成功。
|
* 返回OK代表请求成功。
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "code")
|
@JSONField(name = "code")
|
||||||
public String getCode() {
|
public String getCode() {
|
||||||
|
|
@ -184,6 +191,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param requestid 请求 ID。无论调用接口成功与否,都会返回请求 ID。
|
* @param requestid 请求 ID。无论调用接口成功与否,都会返回请求 ID。
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "requestid")
|
@JSONField(name = "requestid")
|
||||||
|
|
@ -206,11 +214,12 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param sendstatus 短信发送状态,包括:
|
* @param sendstatus 短信发送状态,包括:
|
||||||
0:待发送
|
* 0:待发送
|
||||||
1:等待回执。
|
* 1:等待回执。
|
||||||
2:发送失败。
|
* 2:发送失败。
|
||||||
3:发送成功。
|
* 3:发送成功。
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sendstatus")
|
@JSONField(name = "sendstatus")
|
||||||
public void setSendstatus(Integer sendstatus) {
|
public void setSendstatus(Integer sendstatus) {
|
||||||
|
|
@ -220,10 +229,10 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return sendstatus 短信发送状态,包括:
|
* @return sendstatus 短信发送状态,包括:
|
||||||
0:待发送
|
* 0:待发送
|
||||||
1:等待回执。
|
* 1:等待回执。
|
||||||
2:发送失败。
|
* 2:发送失败。
|
||||||
3:发送成功。
|
* 3:发送成功。
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sendstatus")
|
@JSONField(name = "sendstatus")
|
||||||
public Integer getSendstatus() {
|
public Integer getSendstatus() {
|
||||||
|
|
@ -236,6 +245,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sendcontent 实际发送的内容字符串
|
* @param sendcontent 实际发送的内容字符串
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sendcontent")
|
@JSONField(name = "sendcontent")
|
||||||
|
|
@ -258,13 +268,14 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param billNum 计费条数
|
* @param billNum 计费条数
|
||||||
国内短信内容计费规则
|
* 国内短信内容计费规则
|
||||||
短信字数=短信模版内容字数 + 签名字数。
|
* 短信字数=短信模版内容字数 + 签名字数。
|
||||||
|
* <p>
|
||||||
短信字数<=70个字数,按照70个字数一条短信计算。
|
* 短信字数<=70个字数,按照70个字数一条短信计算。
|
||||||
|
* <p>
|
||||||
短信字数>70个字数,即为长短信,按照67个字数记为一条短信计算。
|
* 短信字数>70个字数,即为长短信,按照67个字数记为一条短信计算。
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bill_num")
|
@JSONField(name = "bill_num")
|
||||||
public void setBillNum(Integer billNum) {
|
public void setBillNum(Integer billNum) {
|
||||||
|
|
@ -274,12 +285,12 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bill_num 计费条数
|
* @return bill_num 计费条数
|
||||||
国内短信内容计费规则
|
* 国内短信内容计费规则
|
||||||
短信字数=短信模版内容字数 + 签名字数。
|
* 短信字数=短信模版内容字数 + 签名字数。
|
||||||
|
* <p>
|
||||||
短信字数<=70个字数,按照70个字数一条短信计算。
|
* 短信字数<=70个字数,按照70个字数一条短信计算。
|
||||||
|
* <p>
|
||||||
短信字数>70个字数,即为长短信,按照67个字数记为一条短信计算。
|
* 短信字数>70个字数,即为长短信,按照67个字数记为一条短信计算。
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bill_num")
|
@JSONField(name = "bill_num")
|
||||||
public Integer getBillNum() {
|
public Integer getBillNum() {
|
||||||
|
|
@ -292,6 +303,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param receivedate 接收时间
|
* @param receivedate 接收时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "receivedate")
|
@JSONField(name = "receivedate")
|
||||||
|
|
@ -314,6 +326,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param senddate 实际发送时间
|
* @param senddate 实际发送时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "senddate")
|
@JSONField(name = "senddate")
|
||||||
|
|
@ -336,6 +349,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param relateTable 关联业务表名
|
* @param relateTable 关联业务表名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "relate_table")
|
@JSONField(name = "relate_table")
|
||||||
|
|
@ -358,6 +372,7 @@ public abstract class BaseSmsLog<M extends BaseSmsLog<M>> extends BaseModel<M> i
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param relateId 关联业务表主键值
|
* @param relateId 关联业务表主键值
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "relate_id")
|
@JSONField(name = "relate_id")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseStock<M extends BaseStock<M>> extends BaseModel<M> imp
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseStock<M extends BaseStock<M>> extends BaseModel<M> imp
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 品类id
|
* @param productId 品类id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseStock<M extends BaseStock<M>> extends BaseModel<M> imp
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param stockWeight 砂站库存量
|
* @param stockWeight 砂站库存量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "stock_weight")
|
@JSONField(name = "stock_weight")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseStock<M extends BaseStock<M>> extends BaseModel<M> imp
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseStockModifyLog<M extends BaseStockModifyLog<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseStockModifyLog<M extends BaseStockModifyLog<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseStockModifyLog<M extends BaseStockModifyLog<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 品类id
|
* @param productId 品类id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseStockModifyLog<M extends BaseStockModifyLog<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param oldStockWeight 修改签该砂站原有的库存量
|
* @param oldStockWeight 修改签该砂站原有的库存量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "old_stock_weight")
|
@JSONField(name = "old_stock_weight")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseStockModifyLog<M extends BaseStockModifyLog<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param newStockWeight 修改后该砂站的库存量
|
* @param newStockWeight 修改后该砂站的库存量
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "new_stock_weight")
|
@JSONField(name = "new_stock_weight")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseStockModifyLog<M extends BaseStockModifyLog<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserId 创建用户id
|
* @param createUserId 创建用户id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_id")
|
@JSONField(name = "create_user_id")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseStockModifyLog<M extends BaseStockModifyLog<M>> extend
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param createUserName 创建用户名
|
* @param createUserName 创建用户名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_user_name")
|
@JSONField(name = "create_user_name")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseStockModifyLog<M extends BaseStockModifyLog<M>> extend
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name
|
* @param name
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name2 名称简写
|
* @param name2 名称简写
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name2")
|
@JSONField(name = "name2")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lgtd
|
* @param lgtd
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lgtd")
|
@JSONField(name = "lgtd")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lttd
|
* @param lttd
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lttd")
|
@JSONField(name = "lttd")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param address 地址
|
* @param address 地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "address")
|
@JSONField(name = "address")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param phone 电话
|
* @param phone 电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "phone")
|
@JSONField(name = "phone")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del 逻辑删除标志
|
* @param del 逻辑删除标志
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
@ -202,8 +210,9 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param isdeploy 0.未部署,1.已部署
|
* @param isdeploy 0.未部署,1.已部署
|
||||||
本地程序以砂站为单位部署,云端只对已部署的本地程序发送数据,并记录日志,可在本地程序重新上线后,补发数据
|
* 本地程序以砂站为单位部署,云端只对已部署的本地程序发送数据,并记录日志,可在本地程序重新上线后,补发数据
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "isdeploy")
|
@JSONField(name = "isdeploy")
|
||||||
public void setIsdeploy(Integer isdeploy) {
|
public void setIsdeploy(Integer isdeploy) {
|
||||||
|
|
@ -213,7 +222,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return isdeploy 0.未部署,1.已部署
|
* @return isdeploy 0.未部署,1.已部署
|
||||||
本地程序以砂站为单位部署,云端只对已部署的本地程序发送数据,并记录日志,可在本地程序重新上线后,补发数据
|
* 本地程序以砂站为单位部署,云端只对已部署的本地程序发送数据,并记录日志,可在本地程序重新上线后,补发数据
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "isdeploy")
|
@JSONField(name = "isdeploy")
|
||||||
public Integer getIsdeploy() {
|
public Integer getIsdeploy() {
|
||||||
|
|
@ -226,6 +235,7 @@ public abstract class BaseSupermarket<M extends BaseSupermarket<M>> extends Base
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param invoiceType 1.普票,2.专票
|
* @param invoiceType 1.普票,2.专票
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "invoice_type")
|
@JSONField(name = "invoice_type")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseSupermarketCustomerDistance<M extends BaseSupermarketC
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 超市id
|
* @param supermarketId 超市id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseSupermarketCustomerDistance<M extends BaseSupermarketC
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerId 客户收获地址id
|
* @param customerId 客户收获地址id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_id")
|
@JSONField(name = "customer_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseSupermarketCustomerDistance<M extends BaseSupermarketC
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param distance 运距
|
* @param distance 运距
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "distance")
|
@JSONField(name = "distance")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseSupermarketProduct<M extends BaseSupermarketProduct<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseSupermarketProduct<M extends BaseSupermarketProduct<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param productId 商品id
|
* @param productId 商品id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "product_id")
|
@JSONField(name = "product_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseSupermarketProduct<M extends BaseSupermarketProduct<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitPrice 商品在砂站的销售单价
|
* @param unitPrice 商品在砂站的销售单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_price")
|
@JSONField(name = "unit_price")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseSupermarketReceiverDistance<M extends BaseSupermarketR
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseSupermarketReceiverDistance<M extends BaseSupermarketR
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param customerReceiverId 客户收获地址id
|
* @param customerReceiverId 客户收获地址id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "customer_receiver_id")
|
@JSONField(name = "customer_receiver_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseSupermarketReceiverDistance<M extends BaseSupermarketR
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param distance 运距
|
* @param distance 运距
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "distance")
|
@JSONField(name = "distance")
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||||
* Generated by COWR Fri Apr 17 16:59:35 CST 2020
|
* Generated by COWR Fri Apr 17 16:59:35 CST 2020
|
||||||
* TableName: supermarket_sandfarm_distance
|
* TableName: supermarket_sandfarm_distance
|
||||||
* Remarks: 基础配置 - 生产点到销售点的距离配置
|
* Remarks: 基础配置 - 生产点到销售点的距离配置
|
||||||
|
* <p>
|
||||||
* PrimaryKey: supermarket_id,sandfarm_id
|
* PrimaryKey: supermarket_id,sandfarm_id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
@ -27,6 +27,7 @@ public abstract class BaseSupermarketSandfarmDistance<M extends BaseSupermarketS
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -49,6 +50,7 @@ public abstract class BaseSupermarketSandfarmDistance<M extends BaseSupermarketS
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sandfarmId 砂场id
|
* @param sandfarmId 砂场id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sandfarm_id")
|
@JSONField(name = "sandfarm_id")
|
||||||
|
|
@ -71,6 +73,7 @@ public abstract class BaseSupermarketSandfarmDistance<M extends BaseSupermarketS
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param distance 运距
|
* @param distance 运距
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "distance")
|
@JSONField(name = "distance")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id 用uuid
|
* @param id 用uuid
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param state 同步状态0,待同步,1已同步
|
* @param state 同步状态0,待同步,1已同步
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 超市id
|
* @param supermarketId 超市id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param createTime 创建时间,先创建,先推送
|
* @param createTime 创建时间,先创建,先推送
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "create_time")
|
@JSONField(name = "create_time")
|
||||||
|
|
@ -136,10 +141,11 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param saveData 需要新增的数据
|
* @param saveData 需要新增的数据
|
||||||
{
|
* {
|
||||||
tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
* tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "save_data")
|
@JSONField(name = "save_data")
|
||||||
public void setSaveData(String saveData) {
|
public void setSaveData(String saveData) {
|
||||||
|
|
@ -149,9 +155,9 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return save_data 需要新增的数据
|
* @return save_data 需要新增的数据
|
||||||
{
|
* {
|
||||||
tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
* tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "save_data")
|
@JSONField(name = "save_data")
|
||||||
public String getSaveData() {
|
public String getSaveData() {
|
||||||
|
|
@ -164,10 +170,11 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param updateData 需要新增的数据
|
* @param updateData 需要新增的数据
|
||||||
{
|
* {
|
||||||
tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
* tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "update_data")
|
@JSONField(name = "update_data")
|
||||||
public void setUpdateData(String updateData) {
|
public void setUpdateData(String updateData) {
|
||||||
|
|
@ -177,9 +184,9 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return update_data 需要新增的数据
|
* @return update_data 需要新增的数据
|
||||||
{
|
* {
|
||||||
tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
* tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "update_data")
|
@JSONField(name = "update_data")
|
||||||
public String getUpdateData() {
|
public String getUpdateData() {
|
||||||
|
|
@ -192,10 +199,11 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param deleteData 需要删除的数据
|
* @param deleteData 需要删除的数据
|
||||||
{
|
* {
|
||||||
tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
* tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "delete_data")
|
@JSONField(name = "delete_data")
|
||||||
public void setDeleteData(String deleteData) {
|
public void setDeleteData(String deleteData) {
|
||||||
|
|
@ -205,9 +213,9 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return delete_data 需要删除的数据
|
* @return delete_data 需要删除的数据
|
||||||
{
|
* {
|
||||||
tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
* tablename: { pks: '多个主键逗号分隔', data: [{数据体}] }
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "delete_data")
|
@JSONField(name = "delete_data")
|
||||||
public String getDeleteData() {
|
public String getDeleteData() {
|
||||||
|
|
@ -220,15 +228,16 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param incrementData 需要修改的数据
|
* @param incrementData 需要修改的数据
|
||||||
{
|
* {
|
||||||
tablename: {
|
* tablename: {
|
||||||
pks: '',
|
* pks: '',
|
||||||
increment: {
|
* increment: {
|
||||||
key: value
|
* key: value
|
||||||
}
|
* }
|
||||||
}
|
* }
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "increment_data")
|
@JSONField(name = "increment_data")
|
||||||
public void setIncrementData(String incrementData) {
|
public void setIncrementData(String incrementData) {
|
||||||
|
|
@ -238,14 +247,14 @@ public abstract class BaseSyncTask<M extends BaseSyncTask<M>> extends BaseModel<
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return increment_data 需要修改的数据
|
* @return increment_data 需要修改的数据
|
||||||
{
|
* {
|
||||||
tablename: {
|
* tablename: {
|
||||||
pks: '',
|
* pks: '',
|
||||||
increment: {
|
* increment: {
|
||||||
key: value
|
* key: value
|
||||||
}
|
* }
|
||||||
}
|
* }
|
||||||
}
|
* }
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "increment_data")
|
@JSONField(name = "increment_data")
|
||||||
public String getIncrementData() {
|
public String getIncrementData() {
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param phone 电话
|
* @param phone 电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "phone")
|
@JSONField(name = "phone")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name 姓名
|
* @param name 姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param password 密码
|
* @param password 密码
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "password")
|
@JSONField(name = "password")
|
||||||
|
|
@ -114,14 +118,15 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param type 1,砂站用户
|
* @param type 1,砂站用户
|
||||||
负责具体某个砂站相关操作的用户需要关联某个砂站
|
* 负责具体某个砂站相关操作的用户需要关联某个砂站
|
||||||
2,物流公司用户
|
* 2,物流公司用户
|
||||||
需要关联物流公司
|
* 需要关联物流公司
|
||||||
3,用户开放注册时的用户注册,可以审核关联客户表信息,否则就是个人用户不进行customer关联
|
* 3,用户开放注册时的用户注册,可以审核关联客户表信息,否则就是个人用户不进行customer关联
|
||||||
修改操作不允许修改此字段
|
* 修改操作不允许修改此字段
|
||||||
4. 司机
|
* 4. 司机
|
||||||
5. 楚和公司用户,可以查看管理全部砂站情况
|
* 5. 楚和公司用户,可以查看管理全部砂站情况
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
public void setType(java.lang.Integer type) {
|
public void setType(java.lang.Integer type) {
|
||||||
|
|
@ -131,13 +136,13 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return type 1,砂站用户
|
* @return type 1,砂站用户
|
||||||
负责具体某个砂站相关操作的用户需要关联某个砂站
|
* 负责具体某个砂站相关操作的用户需要关联某个砂站
|
||||||
2,物流公司用户
|
* 2,物流公司用户
|
||||||
需要关联物流公司
|
* 需要关联物流公司
|
||||||
3,用户开放注册时的用户注册,可以审核关联客户表信息,否则就是个人用户不进行customer关联
|
* 3,用户开放注册时的用户注册,可以审核关联客户表信息,否则就是个人用户不进行customer关联
|
||||||
修改操作不允许修改此字段
|
* 修改操作不允许修改此字段
|
||||||
4. 司机
|
* 4. 司机
|
||||||
5. 楚和公司用户,可以查看管理全部砂站情况
|
* 5. 楚和公司用户,可以查看管理全部砂站情况
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
public java.lang.Integer getType() {
|
public java.lang.Integer getType() {
|
||||||
|
|
@ -150,6 +155,7 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param entityId 如果用户的相关操作关联了某个砂站,物流公司,则填写
|
* @param entityId 如果用户的相关操作关联了某个砂站,物流公司,则填写
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "entity_id")
|
@JSONField(name = "entity_id")
|
||||||
|
|
@ -172,19 +178,20 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param role 100 砂站管理员
|
* @param role 100 砂站管理员
|
||||||
101 砂站管理调度
|
* 101 砂站管理调度
|
||||||
102 砂站装卸货
|
* 102 砂站装卸货
|
||||||
|
* <p>
|
||||||
201 物流管理人员
|
* 201 物流管理人员
|
||||||
202 司机
|
* 202 司机
|
||||||
|
* <p>
|
||||||
300 预留给注册用户
|
* 300 预留给注册用户
|
||||||
400 占位
|
* 400 占位
|
||||||
|
* <p>
|
||||||
500 公司总经理,权限:查看、付费审核、退费审核
|
* 500 公司总经理,权限:查看、付费审核、退费审核
|
||||||
501 公司财务人员,权限:查看、付费、退费
|
* 501 公司财务人员,权限:查看、付费、退费
|
||||||
502 公司领导,权限:查看
|
* 502 公司领导,权限:查看
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "role")
|
@JSONField(name = "role")
|
||||||
public void setRole(java.lang.Integer role) {
|
public void setRole(java.lang.Integer role) {
|
||||||
|
|
@ -194,18 +201,18 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return role 100 砂站管理员
|
* @return role 100 砂站管理员
|
||||||
101 砂站管理调度
|
* 101 砂站管理调度
|
||||||
102 砂站装卸货
|
* 102 砂站装卸货
|
||||||
|
* <p>
|
||||||
201 物流管理人员
|
* 201 物流管理人员
|
||||||
202 司机
|
* 202 司机
|
||||||
|
* <p>
|
||||||
300 预留给注册用户
|
* 300 预留给注册用户
|
||||||
400 占位
|
* 400 占位
|
||||||
|
* <p>
|
||||||
500 公司总经理,权限:查看、付费审核、退费审核
|
* 500 公司总经理,权限:查看、付费审核、退费审核
|
||||||
501 公司财务人员,权限:查看、付费、退费
|
* 501 公司财务人员,权限:查看、付费、退费
|
||||||
502 公司领导,权限:查看
|
* 502 公司领导,权限:查看
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "role")
|
@JSONField(name = "role")
|
||||||
public java.lang.Integer getRole() {
|
public java.lang.Integer getRole() {
|
||||||
|
|
@ -218,6 +225,7 @@ public abstract class BaseSysuser<M extends BaseSysuser<M>> extends BaseModel<M>
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del 逻辑删除标记位
|
* @param del 逻辑删除标记位
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||||
* Generated by COWR Fri Apr 17 16:59:35 CST 2020
|
* Generated by COWR Fri Apr 17 16:59:35 CST 2020
|
||||||
* TableName: trans_price_config_sale
|
* TableName: trans_price_config_sale
|
||||||
* Remarks: 系统配置 - 销售运费配置信息
|
* Remarks: 系统配置 - 销售运费配置信息
|
||||||
|
* <p>
|
||||||
* PrimaryKey: id
|
* PrimaryKey: id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
@ -27,6 +27,7 @@ public abstract class BaseTransPriceConfigSale<M extends BaseTransPriceConfigSal
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -49,6 +50,7 @@ public abstract class BaseTransPriceConfigSale<M extends BaseTransPriceConfigSal
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param min 价格分段起始吨数
|
* @param min 价格分段起始吨数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "min")
|
@JSONField(name = "min")
|
||||||
|
|
@ -71,6 +73,7 @@ public abstract class BaseTransPriceConfigSale<M extends BaseTransPriceConfigSal
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param max 价格分段截止吨数
|
* @param max 价格分段截止吨数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "max")
|
@JSONField(name = "max")
|
||||||
|
|
@ -93,6 +96,7 @@ public abstract class BaseTransPriceConfigSale<M extends BaseTransPriceConfigSal
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param start 价格分段对应起步价
|
* @param start 价格分段对应起步价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "start")
|
@JSONField(name = "start")
|
||||||
|
|
@ -115,6 +119,7 @@ public abstract class BaseTransPriceConfigSale<M extends BaseTransPriceConfigSal
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitPrice 每公里每吨运输单价
|
* @param unitPrice 每公里每吨运输单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_price")
|
@JSONField(name = "unit_price")
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||||
* Generated by COWR Fri Apr 17 16:59:35 CST 2020
|
* Generated by COWR Fri Apr 17 16:59:35 CST 2020
|
||||||
* TableName: trans_price_config_transfer
|
* TableName: trans_price_config_transfer
|
||||||
* Remarks: 系统配置 - 转运运费配置信息
|
* Remarks: 系统配置 - 转运运费配置信息
|
||||||
|
* <p>
|
||||||
* PrimaryKey: id
|
* PrimaryKey: id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
@ -27,6 +27,7 @@ public abstract class BaseTransPriceConfigTransfer<M extends BaseTransPriceConfi
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -49,6 +50,7 @@ public abstract class BaseTransPriceConfigTransfer<M extends BaseTransPriceConfi
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param min 价格分段起始吨数
|
* @param min 价格分段起始吨数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "min")
|
@JSONField(name = "min")
|
||||||
|
|
@ -71,6 +73,7 @@ public abstract class BaseTransPriceConfigTransfer<M extends BaseTransPriceConfi
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param max 价格分段截止吨数
|
* @param max 价格分段截止吨数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "max")
|
@JSONField(name = "max")
|
||||||
|
|
@ -93,6 +96,7 @@ public abstract class BaseTransPriceConfigTransfer<M extends BaseTransPriceConfi
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param start 价格分段对应起步价
|
* @param start 价格分段对应起步价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "start")
|
@JSONField(name = "start")
|
||||||
|
|
@ -115,6 +119,7 @@ public abstract class BaseTransPriceConfigTransfer<M extends BaseTransPriceConfi
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitPrice 每公里每吨运输单价
|
* @param unitPrice 每公里每吨运输单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_price")
|
@JSONField(name = "unit_price")
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||||
* Generated by COWR Fri Apr 17 16:59:35 CST 2020
|
* Generated by COWR Fri Apr 17 16:59:35 CST 2020
|
||||||
* TableName: trans_price_config_trash
|
* TableName: trans_price_config_trash
|
||||||
* Remarks: 系统配置 - 废料运费配置信息
|
* Remarks: 系统配置 - 废料运费配置信息
|
||||||
|
* <p>
|
||||||
* PrimaryKey: id
|
* PrimaryKey: id
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
|
|
@ -27,6 +27,7 @@ public abstract class BaseTransPriceConfigTrash<M extends BaseTransPriceConfigTr
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -49,6 +50,7 @@ public abstract class BaseTransPriceConfigTrash<M extends BaseTransPriceConfigTr
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param min 价格分段起始吨数
|
* @param min 价格分段起始吨数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "min")
|
@JSONField(name = "min")
|
||||||
|
|
@ -71,6 +73,7 @@ public abstract class BaseTransPriceConfigTrash<M extends BaseTransPriceConfigTr
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param max 价格分段截止吨数
|
* @param max 价格分段截止吨数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "max")
|
@JSONField(name = "max")
|
||||||
|
|
@ -93,6 +96,7 @@ public abstract class BaseTransPriceConfigTrash<M extends BaseTransPriceConfigTr
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param start 价格分段对应起步价
|
* @param start 价格分段对应起步价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "start")
|
@JSONField(name = "start")
|
||||||
|
|
@ -115,6 +119,7 @@ public abstract class BaseTransPriceConfigTrash<M extends BaseTransPriceConfigTr
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param unitPrice 每公里每吨运输单价
|
* @param unitPrice 每公里每吨运输单价
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "unit_price")
|
@JSONField(name = "unit_price")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id uuid,上传时,避免冲突
|
* @param id uuid,上传时,避免冲突
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param orderSn 关联订单号,方便查询
|
* @param orderSn 关联订单号,方便查询
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "order_sn")
|
@JSONField(name = "order_sn")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param supermarketId 砂站id
|
* @param supermarketId 砂站id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "supermarket_id")
|
@JSONField(name = "supermarket_id")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param inTime 进场时间
|
* @param inTime 进场时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "in_time")
|
@JSONField(name = "in_time")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param outTime 出场时间
|
* @param outTime 出场时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "out_time")
|
@JSONField(name = "out_time")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param inWhich 入场地点
|
* @param inWhich 入场地点
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "in_which")
|
@JSONField(name = "in_which")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param outWhich 出场地点
|
* @param outWhich 出场地点
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "out_which")
|
@JSONField(name = "out_which")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param inMode 入场方式,1.系统自动,2.手动
|
* @param inMode 入场方式,1.系统自动,2.手动
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "in_mode")
|
@JSONField(name = "in_mode")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param outMode 出场方式,1.系统自动,2.手动
|
* @param outMode 出场方式,1.系统自动,2.手动
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "out_mode")
|
@JSONField(name = "out_mode")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param firstWeight 进场称重
|
* @param firstWeight 进场称重
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "first_weight")
|
@JSONField(name = "first_weight")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param secondWeight 出场称重
|
* @param secondWeight 出场称重
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "second_weight")
|
@JSONField(name = "second_weight")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param firstWeighMode 第一次称重方式,1.系统自动,2.手动
|
* @param firstWeighMode 第一次称重方式,1.系统自动,2.手动
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "first_weigh_mode")
|
@JSONField(name = "first_weigh_mode")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param secondWeightMode 第二次称重方式,1.系统自动,2.手动
|
* @param secondWeightMode 第二次称重方式,1.系统自动,2.手动
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "second_weight_mode")
|
@JSONField(name = "second_weight_mode")
|
||||||
|
|
@ -312,6 +325,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param firstPic 入场车牌识别图片key
|
* @param firstPic 入场车牌识别图片key
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "first_pic")
|
@JSONField(name = "first_pic")
|
||||||
|
|
@ -334,6 +348,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param firstWeightWhich 入场称重地点
|
* @param firstWeightWhich 入场称重地点
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "first_weight_which")
|
@JSONField(name = "first_weight_which")
|
||||||
|
|
@ -356,6 +371,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param secondWeightWhich 出场称重地点
|
* @param secondWeightWhich 出场称重地点
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "second_weight_which")
|
@JSONField(name = "second_weight_which")
|
||||||
|
|
@ -378,6 +394,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param secondPic 出场车牌识别图片key
|
* @param secondPic 出场车牌识别图片key
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "second_pic")
|
@JSONField(name = "second_pic")
|
||||||
|
|
@ -400,6 +417,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param arriveTime 完成时间
|
* @param arriveTime 完成时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "arrive_time")
|
@JSONField(name = "arrive_time")
|
||||||
|
|
@ -422,6 +440,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param type 1、2、3、4、5
|
* @param type 1、2、3、4、5
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "type")
|
@JSONField(name = "type")
|
||||||
|
|
@ -444,6 +463,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param truckLicense 车牌号
|
* @param truckLicense 车牌号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "truck_license")
|
@JSONField(name = "truck_license")
|
||||||
|
|
@ -466,6 +486,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo 备注
|
* @param memo 备注
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -488,6 +509,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: CURRENT_TIMESTAMP
|
* defaultValue: CURRENT_TIMESTAMP
|
||||||
|
*
|
||||||
* @param changeTime 最后修改时间
|
* @param changeTime 最后修改时间
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "change_time")
|
@JSONField(name = "change_time")
|
||||||
|
|
@ -510,6 +532,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId 物流公司,物流公司信息存在这里,主要是方便查询,不用去关联订单,另外可以避免车辆跟换物流公司的问题
|
* @param transCoId 物流公司,物流公司信息存在这里,主要是方便查询,不用去关联订单,另外可以避免车辆跟换物流公司的问题
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -532,6 +555,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoName
|
* @param transCoName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_name")
|
@JSONField(name = "trans_co_name")
|
||||||
|
|
@ -554,6 +578,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerName 物流公司开票公司名称
|
* @param transCoTexpayerName 物流公司开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_name")
|
@JSONField(name = "trans_co_texpayer_name")
|
||||||
|
|
@ -576,6 +601,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoTexpayerNum
|
* @param transCoTexpayerNum
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_texpayer_num")
|
@JSONField(name = "trans_co_texpayer_num")
|
||||||
|
|
@ -598,6 +624,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoAddress
|
* @param transCoAddress
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_address")
|
@JSONField(name = "trans_co_address")
|
||||||
|
|
@ -620,6 +647,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoPhone
|
* @param transCoPhone
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_phone")
|
@JSONField(name = "trans_co_phone")
|
||||||
|
|
@ -642,6 +670,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankName
|
* @param transCoBankName
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_name")
|
@JSONField(name = "trans_co_bank_name")
|
||||||
|
|
@ -664,6 +693,7 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoBankAccount
|
* @param transCoBankAccount
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_bank_account")
|
@JSONField(name = "trans_co_bank_account")
|
||||||
|
|
@ -686,13 +716,13 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 1,初始状态;
|
* @param state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(后台自动设置)
|
* 4,已离场(后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public void setState(Integer state) {
|
public void setState(Integer state) {
|
||||||
|
|
@ -702,12 +732,11 @@ public abstract class BaseTransport<M extends BaseTransport<M>> extends BaseMode
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return state 1,初始状态;
|
* @return state 1,初始状态;
|
||||||
2,已进场;(后台自动设置)
|
* 2,已进场;(后台自动设置)
|
||||||
3,已装载
|
* 3,已装载
|
||||||
4,已离场(后台自动设置)
|
* 4,已离场(后台自动设置)
|
||||||
5,已收货
|
* 5,已收货
|
||||||
9,订单作废
|
* 9,订单作废
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
public Integer getState() {
|
public Integer getState() {
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "id")
|
@JSONField(name = "id")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param name
|
* @param name
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "name")
|
@JSONField(name = "name")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lgtd
|
* @param lgtd
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lgtd")
|
@JSONField(name = "lgtd")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param lttd
|
* @param lttd
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "lttd")
|
@JSONField(name = "lttd")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param address 开票地址
|
* @param address 开票地址
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "address")
|
@JSONField(name = "address")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param phone 开票电话
|
* @param phone 开票电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "phone")
|
@JSONField(name = "phone")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param texpayerName 开票公司名称
|
* @param texpayerName 开票公司名称
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "texpayer_name")
|
@JSONField(name = "texpayer_name")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param texpayerNum 税号
|
* @param texpayerNum 税号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "texpayer_num")
|
@JSONField(name = "texpayer_num")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bankName 开户行
|
* @param bankName 开户行
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bank_name")
|
@JSONField(name = "bank_name")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param bankAccount 开户行账号
|
* @param bankAccount 开户行账号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "bank_account")
|
@JSONField(name = "bank_account")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo 备注
|
* @param memo 备注
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del 逻辑删除标志
|
* @param del 逻辑删除标志
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseTransportCompany<M extends BaseTransportCompany<M>> ex
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1.0000
|
* defaultValue: 1.0000
|
||||||
|
*
|
||||||
* @param priceModulus 价格折扣系数
|
* @param priceModulus 价格折扣系数
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "price_modulus")
|
@JSONField(name = "price_modulus")
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: YES
|
* isPrimaryKey: YES
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param license
|
* @param license
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "license")
|
@JSONField(name = "license")
|
||||||
|
|
@ -48,6 +49,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param transCoId
|
* @param transCoId
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "trans_co_id")
|
@JSONField(name = "trans_co_id")
|
||||||
|
|
@ -70,6 +72,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param capacity 载重
|
* @param capacity 载重
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "capacity")
|
@JSONField(name = "capacity")
|
||||||
|
|
@ -92,6 +95,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param memo
|
* @param memo
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "memo")
|
@JSONField(name = "memo")
|
||||||
|
|
@ -114,6 +118,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 1
|
* defaultValue: 1
|
||||||
|
*
|
||||||
* @param state 状态: 1,正常 2,黑名单
|
* @param state 状态: 1,正常 2,黑名单
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "state")
|
@JSONField(name = "state")
|
||||||
|
|
@ -136,6 +141,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: NO
|
* isNullable: NO
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue: 0
|
* defaultValue: 0
|
||||||
|
*
|
||||||
* @param del
|
* @param del
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "del")
|
@JSONField(name = "del")
|
||||||
|
|
@ -158,6 +164,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param tare 皮重
|
* @param tare 皮重
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "tare")
|
@JSONField(name = "tare")
|
||||||
|
|
@ -180,6 +187,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param model 型号
|
* @param model 型号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "model")
|
@JSONField(name = "model")
|
||||||
|
|
@ -202,6 +210,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param number 车辆编码,每个物流公司唯一
|
* @param number 车辆编码,每个物流公司唯一
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "number")
|
@JSONField(name = "number")
|
||||||
|
|
@ -224,6 +233,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param ownerName 车主姓名
|
* @param ownerName 车主姓名
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "owner_name")
|
@JSONField(name = "owner_name")
|
||||||
|
|
@ -246,6 +256,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param ownerPhone 车主电话
|
* @param ownerPhone 车主电话
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "owner_phone")
|
@JSONField(name = "owner_phone")
|
||||||
|
|
@ -268,6 +279,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param gps GPS 设备号
|
* @param gps GPS 设备号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "gps")
|
@JSONField(name = "gps")
|
||||||
|
|
@ -290,6 +302,7 @@ public abstract class BaseTruck<M extends BaseTruck<M>> extends BaseModel<M> imp
|
||||||
* isNullable: YES
|
* isNullable: YES
|
||||||
* isPrimaryKey: NO
|
* isPrimaryKey: NO
|
||||||
* defaultValue:
|
* defaultValue:
|
||||||
|
*
|
||||||
* @param sim GPS 设备上安装的手机卡号
|
* @param sim GPS 设备上安装的手机卡号
|
||||||
*/
|
*/
|
||||||
@JSONField(name = "sim")
|
@JSONField(name = "sim")
|
||||||
|
|
|
||||||
|
|
@ -62,6 +62,7 @@ public class AuthLicenseService extends BaseService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断车牌是否是系统中授权可用的
|
* 判断车牌是否是系统中授权可用的
|
||||||
|
*
|
||||||
* @param truck_license
|
* @param truck_license
|
||||||
* @return 已授权,返回 true, 未授权,返回 false
|
* @return 已授权,返回 true, 未授权,返回 false
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ import com.jfinal.kit.StrKit;
|
||||||
import com.jfinal.plugin.activerecord.Db;
|
import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Page;
|
import com.jfinal.plugin.activerecord.Page;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
@ -58,6 +59,7 @@ public class BlacklistService extends BaseService {
|
||||||
/**
|
/**
|
||||||
* 使用完整的车牌查询
|
* 使用完整的车牌查询
|
||||||
* 车辆被加入黑名单,并且没有移出黑名单
|
* 车辆被加入黑名单,并且没有移出黑名单
|
||||||
|
*
|
||||||
* @param license
|
* @param license
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ import com.jfinal.kit.StrKit;
|
||||||
import com.jfinal.plugin.activerecord.Db;
|
import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Page;
|
import com.jfinal.plugin.activerecord.Page;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ import com.jfinal.kit.StrKit;
|
||||||
import com.jfinal.plugin.activerecord.Db;
|
import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Page;
|
import com.jfinal.plugin.activerecord.Page;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ import com.jfinal.kit.StrKit;
|
||||||
import com.jfinal.plugin.activerecord.Db;
|
import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Page;
|
import com.jfinal.plugin.activerecord.Page;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ import com.jfinal.kit.StrKit;
|
||||||
import com.jfinal.plugin.activerecord.Db;
|
import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Page;
|
import com.jfinal.plugin.activerecord.Page;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -225,9 +225,11 @@ public class InvoiceLogService extends BaseService {
|
||||||
row.createCell(a++).setCellValue(order.getStr("invalid_user_name"));
|
row.createCell(a++).setCellValue(order.getStr("invalid_user_name"));
|
||||||
switch (order.getInt("state")) {
|
switch (order.getInt("state")) {
|
||||||
case 5:
|
case 5:
|
||||||
row.createCell(a++).setCellValue("已使用"); break;
|
row.createCell(a++).setCellValue("已使用");
|
||||||
|
break;
|
||||||
case 9:
|
case 9:
|
||||||
row.createCell(a++).setCellValue("已作废"); break;
|
row.createCell(a++).setCellValue("已作废");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
row.createCell(a++).setCellValue("");
|
row.createCell(a++).setCellValue("");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -163,7 +163,6 @@ public class InvoiceReceiveService extends BaseService {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ import com.jfinal.kit.StrKit;
|
||||||
|
|
||||||
public class OrderService {
|
public class OrderService {
|
||||||
public static OrderService me = new OrderService();
|
public static OrderService me = new OrderService();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 按 sn 查询订单相关信息
|
* 按 sn 查询订单相关信息
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -83,6 +83,7 @@ public class OrderclusterTruckService extends BaseService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用超市id、车牌号查询当天关联的集团订单信息
|
* 用超市id、车牌号查询当天关联的集团订单信息
|
||||||
|
*
|
||||||
* @param supermarket_id
|
* @param supermarket_id
|
||||||
* @param truck_license
|
* @param truck_license
|
||||||
* @return
|
* @return
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ public class OrderPurchaseService extends BaseService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 按 sn 查询单个订单信息
|
* 按 sn 查询单个订单信息
|
||||||
|
*
|
||||||
* @param sn
|
* @param sn
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ public class OrderSaleService extends BaseService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 按 sn 查询单个订单信息
|
* 按 sn 查询单个订单信息
|
||||||
|
*
|
||||||
* @param sn
|
* @param sn
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -316,13 +316,17 @@ public class OrderTempService extends BaseService {
|
||||||
|
|
||||||
switch (order.getInt("state")) {
|
switch (order.getInt("state")) {
|
||||||
case 1:
|
case 1:
|
||||||
row.createCell(a++).setCellValue("新建"); break;
|
row.createCell(a++).setCellValue("新建");
|
||||||
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
row.createCell(a++).setCellValue("待付款"); break;
|
row.createCell(a++).setCellValue("待付款");
|
||||||
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
row.createCell(a++).setCellValue("已完成"); break;
|
row.createCell(a++).setCellValue("已完成");
|
||||||
|
break;
|
||||||
case 9:
|
case 9:
|
||||||
row.createCell(a++).setCellValue("已取消"); break;
|
row.createCell(a++).setCellValue("已取消");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
row.createCell(a++).setCellValue("");
|
row.createCell(a++).setCellValue("");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import com.jfinal.core.Controller;
|
||||||
* Generated by COWR Fri Apr 17 16:59:39 CST 2020
|
* Generated by COWR Fri Apr 17 16:59:39 CST 2020
|
||||||
* TableName: order_trash
|
* TableName: order_trash
|
||||||
* Remarks: 订单相关 - 废料运出单
|
* Remarks: 订单相关 - 废料运出单
|
||||||
|
* <p>
|
||||||
* PrimaryKey: sn
|
* PrimaryKey: sn
|
||||||
*/
|
*/
|
||||||
public class OrderTrashPKValidator extends CrudParamValidator {
|
public class OrderTrashPKValidator extends CrudParamValidator {
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ import com.jfinal.kit.StrKit;
|
||||||
import com.jfinal.plugin.activerecord.Db;
|
import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Page;
|
import com.jfinal.plugin.activerecord.Page;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
@ -16,7 +17,7 @@ import java.util.List;
|
||||||
* Generated by COWR Fri Apr 17 16:59:39 CST 2020
|
* Generated by COWR Fri Apr 17 16:59:39 CST 2020
|
||||||
* TableName: order_trash
|
* TableName: order_trash
|
||||||
* Remarks: 订单相关 - 废料运出单
|
* Remarks: 订单相关 - 废料运出单
|
||||||
|
* <p>
|
||||||
* PrimaryKey: sn
|
* PrimaryKey: sn
|
||||||
*/
|
*/
|
||||||
public class OrderTrashService extends BaseService {
|
public class OrderTrashService extends BaseService {
|
||||||
|
|
@ -24,6 +25,7 @@ public class OrderTrashService extends BaseService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 按 sn 查询单个订单信息
|
* 按 sn 查询单个订单信息
|
||||||
|
*
|
||||||
* @param sn
|
* @param sn
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -289,6 +289,7 @@ group by date
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 近 31 日总销售列表
|
* 近 31 日总销售列表
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<Record> lastStat() {
|
public List<Record> lastStat() {
|
||||||
|
|
@ -313,6 +314,7 @@ group by date
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 近 31 日砂站总销售列表
|
* 近 31 日砂站总销售列表
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<Record> lastSupermarketStat(int supermarket_id) {
|
public List<Record> lastSupermarketStat(int supermarket_id) {
|
||||||
|
|
@ -339,6 +341,7 @@ group by date
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 近 31 日客户总销售列表
|
* 近 31 日客户总销售列表
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<Record> lastCustomerStat(int customer_id) {
|
public List<Record> lastCustomerStat(int customer_id) {
|
||||||
|
|
@ -365,6 +368,7 @@ group by date
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 近 31 日散户总销售列表
|
* 近 31 日散户总销售列表
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<Record> lastTempStat() {
|
public List<Record> lastTempStat() {
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ public class PrepayDetailVerifyValidator extends CrudParamValidator {
|
||||||
add(2);
|
add(2);
|
||||||
add(9);
|
add(9);
|
||||||
}};
|
}};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void validate(Controller c) {
|
protected void validate(Controller c) {
|
||||||
validateString("id", 32, 32, "id", "id 长度 32,必填");
|
validateString("id", 32, 32, "id", "id 长度 32,必填");
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ public class RefundDetailConfirmValidator extends CrudParamValidator {
|
||||||
add(2);
|
add(2);
|
||||||
add(9);
|
add(9);
|
||||||
}};
|
}};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void validate(Controller c) {
|
protected void validate(Controller c) {
|
||||||
validateString("id", 32, 32, "id", "id 长度 32,必填");
|
validateString("id", 32, 32, "id", "id 长度 32,必填");
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ public class RefundDetailVerifyValidator extends CrudParamValidator {
|
||||||
add(2);
|
add(2);
|
||||||
add(9);
|
add(9);
|
||||||
}};
|
}};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void validate(Controller c) {
|
protected void validate(Controller c) {
|
||||||
validateString("id", 32, 32, "id", "id 长度 32,必填");
|
validateString("id", 32, 32, "id", "id 长度 32,必填");
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
import org.apache.poi.ss.usermodel.*;
|
import org.apache.poi.ss.usermodel.*;
|
||||||
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ public class SupermarketService extends BaseService {
|
||||||
/**
|
/**
|
||||||
* 获取所有砂站和商品的配置
|
* 获取所有砂站和商品的配置
|
||||||
* 数据量不多,都加载进来
|
* 数据量不多,都加载进来
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
private Map<Integer, List<Record>> getSupProduct() {
|
private Map<Integer, List<Record>> getSupProduct() {
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ import com.jfinal.core.Controller;
|
||||||
* Generated by COWR Mon Apr 06 09:50:28 CST 2020
|
* Generated by COWR Mon Apr 06 09:50:28 CST 2020
|
||||||
* TableName: supermarket_sandfarm_distance
|
* TableName: supermarket_sandfarm_distance
|
||||||
* Remarks: 生产点到销售点的距离配置
|
* Remarks: 生产点到销售点的距离配置
|
||||||
|
* <p>
|
||||||
* PrimaryKey: supermarket_id,sandfarm_id
|
* PrimaryKey: supermarket_id,sandfarm_id
|
||||||
*/
|
*/
|
||||||
public class SupermarketSandfarmDistancePKValidator extends CrudParamValidator {
|
public class SupermarketSandfarmDistancePKValidator extends CrudParamValidator {
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ import com.jfinal.kit.StrKit;
|
||||||
import com.jfinal.plugin.activerecord.Db;
|
import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Page;
|
import com.jfinal.plugin.activerecord.Page;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ import com.jfinal.log.Log;
|
||||||
import com.jfinal.plugin.activerecord.Db;
|
import com.jfinal.plugin.activerecord.Db;
|
||||||
import com.jfinal.plugin.activerecord.Page;
|
import com.jfinal.plugin.activerecord.Page;
|
||||||
import com.jfinal.plugin.activerecord.Record;
|
import com.jfinal.plugin.activerecord.Record;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,7 @@ public class TransPriceService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 计算总价,三舍四入 保留 0 位小数
|
* 计算总价,三舍四入 保留 0 位小数
|
||||||
|
*
|
||||||
* @param up 单价
|
* @param up 单价
|
||||||
* @param net_weight 净重
|
* @param net_weight 净重
|
||||||
* @return Double
|
* @return Double
|
||||||
|
|
@ -86,6 +87,7 @@ public class TransPriceService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 计算总价
|
* 计算总价
|
||||||
|
*
|
||||||
* @param up
|
* @param up
|
||||||
* @param net_weight
|
* @param net_weight
|
||||||
* @return BigDecimal
|
* @return BigDecimal
|
||||||
|
|
@ -100,6 +102,7 @@ public class TransPriceService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 计算销售订单运输总价
|
* 计算销售订单运输总价
|
||||||
|
*
|
||||||
* @param trans_co_id 物流公司id
|
* @param trans_co_id 物流公司id
|
||||||
* @param net_weight 净重
|
* @param net_weight 净重
|
||||||
* @param trans_distance 运输距离
|
* @param trans_distance 运输距离
|
||||||
|
|
@ -112,6 +115,7 @@ public class TransPriceService {
|
||||||
/**
|
/**
|
||||||
* 计算转运订单运输总价
|
* 计算转运订单运输总价
|
||||||
* 2019-08-31 转运运费改为以距离为基础,分段计价
|
* 2019-08-31 转运运费改为以距离为基础,分段计价
|
||||||
|
*
|
||||||
* @param sandfarm_id 砂场id
|
* @param sandfarm_id 砂场id
|
||||||
* @param net_weight 净重
|
* @param net_weight 净重
|
||||||
* @param trans_distance 运输距离
|
* @param trans_distance 运输距离
|
||||||
|
|
@ -230,6 +234,7 @@ public class TransPriceService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 销售订单起步价
|
* 销售订单起步价
|
||||||
|
*
|
||||||
* @param trans_co_id
|
* @param trans_co_id
|
||||||
* @param weight
|
* @param weight
|
||||||
* @return
|
* @return
|
||||||
|
|
@ -240,6 +245,7 @@ public class TransPriceService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 转运订单单价
|
* 转运订单单价
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public double getTransferStartTransPrice(double trans_distance) {
|
public double getTransferStartTransPrice(double trans_distance) {
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue