You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
359 B
21 lines
359 B
package com.epmet.constant;
|
|
|
|
/**
|
|
* @Description
|
|
* @IntefaceName UserCustomerConstant
|
|
* @Author wangc
|
|
* @date 2020.04.02 17:03
|
|
*/
|
|
public interface UserCustomerConstant {
|
|
|
|
/**
|
|
* wrapper映射列名 用户Id
|
|
* */
|
|
String USER_ID = "USER_ID";
|
|
|
|
/**
|
|
* wrapper映射列名 客户Id
|
|
* */
|
|
String CUSTOMER_ID = "CUSTOMER_ID";
|
|
|
|
}
|
|
|