格式化代码

master
lisai17@sina.com 2020-10-18 00:39:17 +08:00
parent 9fa6ec6953
commit a54d1ad330
213 changed files with 5426 additions and 4780 deletions

View File

@ -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 {

View File

@ -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.");
} }
} }

View File

@ -42,6 +42,7 @@ public interface Enums {
/** /**
* which * which
* name * name
*
* @param which * @param which
* @return * @return
*/ */

View File

@ -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
*/ */

View File

@ -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
*/ */

View File

@ -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
*/ */

View File

@ -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; // 未在系统中登记的车牌,未入场。红色。

View File

@ -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
*
3customer * 3customer
*
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
*/ */

View File

@ -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

View File

@ -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) {

View File

@ -10,6 +10,7 @@ public class JsonUtil {
/** /**
* json key * json key
*
* @param obj * @param obj
* @param deep * @param deep
* @return * @return

View File

@ -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;
} }

View File

@ -9,6 +9,7 @@ public class ReqUtil {
* X-Forwarded-ForunknownIP * X-Forwarded-ForunknownIP
* X-Forwarded-For192.168.1.110, 192.168.1.120, 192.168.1.130, 192.168.1.100 * X-Forwarded-For192.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
*/ */

View File

@ -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) {

View File

@ -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
*/ */

View File

@ -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);
} }
} }

View File

@ -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 {
}
} }
} }

View File

@ -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));

View File

@ -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,

View File

@ -95,6 +95,7 @@ public class Result {
/** /**
* Record * Record
* TODO * TODO
*
* @return Record * @return Record
*/ */
@JSONField(serialize = false) @JSONField(serialize = false)

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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 idid s * @param unitId idid 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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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() {

View File

@ -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")

View File

@ -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 12345 * @param type 12345
*/ */
@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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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 IDIDQuerySendDetails * @param bizid IDIDQuerySendDetails
*/ */
@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>
<=7070 * <=7070
* <p>
>7067 * >7067
*/ */
@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>
<=7070 * <=7070
* <p>
>7067 * >7067
*/ */
@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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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 01 * @param state 01
*/ */
@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() {

View File

@ -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
*
3customer * 3customer
*
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
*
3customer * 3customer
*
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")

View File

@ -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")

View File

@ -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")

View File

@ -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")

View File

@ -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 12345 * @param type 12345
*/ */
@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() {

View File

@ -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")

View File

@ -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")

View File

@ -62,6 +62,7 @@ public class AuthLicenseService extends BaseService {
/** /**
* *
*
* @param truck_license * @param truck_license
* @return true false * @return true false
*/ */

View File

@ -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
*/ */

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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("");
} }

View File

@ -163,7 +163,6 @@ public class InvoiceReceiveService extends BaseService {
} }
return out; return out;
} }

View File

@ -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
* *

View File

@ -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

View File

@ -24,6 +24,7 @@ public class OrderPurchaseService extends BaseService {
/** /**
* sn * sn
*
* @param sn * @param sn
* @return * @return
*/ */

View File

@ -24,6 +24,7 @@ public class OrderSaleService extends BaseService {
/** /**
* sn * sn
*
* @param sn * @param sn
* @return * @return
*/ */

View File

@ -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("");
} }

View File

@ -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 {

View File

@ -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
*/ */

View File

@ -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() {

View File

@ -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必填");

View File

@ -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必填");

View File

@ -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必填");

View File

@ -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;

View File

@ -29,6 +29,7 @@ public class SupermarketService extends BaseService {
/** /**
* *
* *
*
* @return * @return
*/ */
private Map<Integer, List<Record>> getSupProduct() { private Map<Integer, List<Record>> getSupProduct() {

View File

@ -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 {

View File

@ -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;

View File

@ -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;

View File

@ -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